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

Accidentally supporting Foo::() #54

Closed xsawyerx closed 4 years ago

xsawyerx commented 4 years ago

This is because we cannot tell the difference between Ident used for SubCall and Ident used for class name.

We need to have two different Ident lexemes. This isn't a top priority. I'm just opening a ticket to keep track.

More data in b628b3e79adead98a17ff1130f6b19f77d8ab23b. Test added with TODO item, so when it passes, we'll know.

xsawyerx commented 4 years ago

This is resolved by #63.