android13/external/antlr/runtime/JavaScript/tests/functional/t051treeRewriteASTtWalker.g

13 lines
295 B
Plaintext
Executable File

// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTtWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTt;
rewrite=true;
}
a : ^(ID INT) -> ^(ID["ick"] INT)
| INT // leaves it alone, returning $a.start
;