blob: 61487e83a6c77e749fec00e6a1267077d3348d8e [file] [log] [blame]
// @@ANTLR Tool Options@@: -trace
tree grammar t049treeparseraWalker;
options {
language=JavaScript;
ASTLabelType=CommonTree;
}
a : ID INT
{this.capture($ID+", "+$INT);}
;