blob: 582a08255b7e3cc6adc927f1cdffc34df3dc01ba [file] [log] [blame]
grammar TreeRewrite;
options {
output=AST;
language=ObjC;
}
rule: INT subrule -> ^(subrule INT)
;
subrule
: INT
;
INT : ('0'..'9')+
;
WS : ' ' {$channel=HIDDEN;}
;