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

Keyword parsing rules #6

Closed xsawyerx closed 4 years ago

xsawyerx commented 4 years ago

This is me collecting my insights from how we should parse/lex the keywords.

crypt "text", "salt";      # ok
crypt text(), salt();      # ok
crypt @{ text_and_salt() } # not ok
xsawyerx commented 4 years ago

This was resolved with NonBraceExpression. Closing this.