t053heteroTP16.g revision 324c4644fee44b9898524c09511bd33c3f12e2df
1grammar t053heteroTP16;
2options {
3    language=JavaScript;
4    output=AST;
5    tokenVocab=t053heteroT16;
6}
7tokens { ROOT; }
8@header {
9function V16(ttype, x) {
10    V16.superclass.constructor.call(this, new org.antlr.runtime.CommonToken(ttype));
11    this.foobar = x;
12};
13org.antlr.lang.extend(V16, org.antlr.runtime.tree.CommonTree, {
14    toString: function() {
15        return t053heteroTP16Parser.tokenNames[this.getType()] + "<V>;" + this.foobar;
16    }
17});
18}
19a : ID -> ROOT<V16>[42] ID
20  ;
21
22