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

12 lines
230 B
Plaintext
Executable File

// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTnWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTn;
}
a : ^(x+=b y+=c) ;
b : ID ;
c : INT ;