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

Fix number parsing #60

Closed vickenty closed 4 years ago

vickenty commented 4 years ago

Parse -4 as a (unary - (litnumber 4)) Disallow whitespace around dot by turning number into a single lexeme. Remove bareword Inf, because it is not a valid number in perl.

Fixes #55. Fixes #56.