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

Variable dereferencing #8

Closed xsawyerx closed 4 years ago

xsawyerx commented 4 years ago

The following syntax is not yet supported:

@{$foo}
$foo->@*

This includes:

I'm honestly happy to only have postfix dereferencing. One recommended way of doing it and that's it.

xsawyerx commented 4 years ago

Postfix dereferencing is supported (with a minor bug) at #40.

xsawyerx commented 4 years ago

Postfix dereferencing is now supported.