[antlr-interest] <AST>: unexpected AST node: (

Terence Parr parrt at cs.usfca.edu
Tue Jan 2 15:20:00 PST 2007


hi.

in

expr: LPAREN INTEGER (PLUS INTEGER)* RPAREN;

you need make it

expr: LPAREN! INTEGER (PLUS^ INTEGER)* RPAREN!;


Ter



More information about the antlr-interest mailing list