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

Calling time() as a function results in a warning #98

Closed scottchiefbaker closed 3 years ago

scottchiefbaker commented 4 years ago

Testing some more of my code I found another "bug". Calling time() as a function with parenthesis triggers a warning:

if (time() % 15 == 0) {

However... calling it without parenthesis does not trigger a warning:

if (time % 15 == 0) {
xsawyerx commented 3 years ago

I just opened #107 which should address this.