Subject: | Tokenization of prototypes for anonymous subroutines doesn't work correctly |
Hey,
The following code
my $a = sub ($$) {}
should produce the following tokens for the part after =
Whitespace, Bareword, Whitespace, SubPrototype, Whitespace, Structure, Structure
instead it produces
Whitespace, Bareword, Whitespace, Structure, Magic, Structure, Whitespace, Structure, Structure
Cheers,
Claes