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

while() with splice doesn't work #47

Closed xsawyerx closed 4 years ago

xsawyerx commented 4 years ago

The following fails:

while ( my ( $foo, $bar ) = splice @array, 0, 2 ) {
    ...
}
xsawyerx commented 4 years ago

This is the same issue as #48.