*Reported by anonymous on 2003-06-10 06:50 UTC
JLex generated lexer parses string "aEiU" with following
lexer definition
%%
%ignorecase
VOWEL=[aeiouy]
%%
{VOWEL}+ { return 2; }
but JFlex generated parser fails, because it doesn't
properly handles character class definition with respect
to case sensitivity.
Osvaldas
*Reported by anonymous on 2003-06-10 06:50 UTC
JLex generated lexer parses string "aEiU" with following
lexer definition
%%
%ignorecase
VOWEL=[aeiouy]
%%
{VOWEL}+ { return 2; }
but JFlex generated parser fails, because it doesn't
properly handles character class definition with respect
to case sensitivity.
Osvaldas