blob: 74dc5d54caf406871d611b63984a0d689ea41165 [file] [log] [blame]
// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTwWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTw;
rewrite=true;
}
s : a ;
a : b ; // a.tree must become b.tree
b : ^(ID INT) -> INT
;