blob: 0c1a7183d7af857ff2b68a111aee340ce38e6244 [file] [log] [blame]
tree grammar t049treeparsercWalker;
options {
language=JavaScript;
ASTLabelType=CommonTree;
}
a : b b ;
b : ID INT {this.capture($ID+" "+$INT+"\n");}
| ^(ID INT) {this.capture("^("+$ID+" "+$INT+")");}
;