1// @@ANTLR Tool Options@@: -trace
2tree grammar t049treeparserfWalker;
3options {
4    language=JavaScript;
5    ASTLabelType=CommonTree;
6}
7a : ^(ID INT?)
8    {this.capture($ID);}
9  ;
10