blob: e8a153e223434396eb0118b23dbf388639583485 [file] [log] [blame]
// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTyWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTy;
rewrite=true;
}
tokens { X; }
s : 'boo' a* b ; // don't reset s.tree to b.tree due to 'boo'
a : X ;
b : ^(ID INT) -> INT
;