blob: dececc1f5ed38179f38340483312f8334e121f4c [file] [log] [blame]
grammar t053heteroT1;
options {
language=JavaScript;
output=AST;
}
@header {
function V() {
V.superclass.constructor.apply(this, arguments);
};
org.antlr.lang.extend(V, org.antlr.runtime.tree.CommonTree, {
toString: function() {
return this.getText() + "<V>";
}
});
}
a : ID<V> ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;