lex_keyword_dup.ebnf (110B)
1 %lex { 2 IDENT = [A-Za-z_][A-Za-z0-9_]*; 3 %keywords IDENT { IF = "if"; IFF = "if"; } 4 } 5 p = IF | IFF | IDENT;