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

13 lines
245 B
Plaintext
Executable File

// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTuWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTu;
rewrite=true;
}
s : ID a ;
a : INT -> INT["1"]
;