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

10 lines
222 B
Plaintext
Executable File

// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTeWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTe;
}
a : (^(ID INT))+ -> INT+ ID+;