10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
|
|
// @@ANTLR Tool Options@@: -trace
|
||
|
|
tree grammar t049treeparserfWalker;
|
||
|
|
options {
|
||
|
|
language=JavaScript;
|
||
|
|
ASTLabelType=CommonTree;
|
||
|
|
}
|
||
|
|
a : ^(ID INT?)
|
||
|
|
{this.capture($ID);}
|
||
|
|
;
|