xsawyerx / guacamole

Guacamole is a parser toolkit for Standard Perl. It provides fully static BNF-based parsing capability to a reasonable subset of Perl.
https://metacpan.org/pod/Guacamole
20 stars 8 forks source link

Function arguments do not accept trailing comma #45

Closed xsawyerx closed 4 years ago

xsawyerx commented 4 years ago

The following fails:

func(
  "foo",
  "bar",
);

Instead, it must remove the trailing comma.

We can keep this or we can fix it.