Files
Android11/external/antlr/runtime/JavaScript/tests/functional/t051treeRewriteASTvWalker.g
2023-10-13 14:01:41 +00:00

14 lines
251 B
Plaintext
Executable File

// @@ANTLR Tool Options@@: -trace
tree grammar t051treeRewriteASTvWalker;
options {
language=JavaScript;
output=AST;
ASTLabelType=CommonTree;
tokenVocab=t051treeRewriteASTv;
rewrite=true;
}
s : a ;
a : b ;
b : ID INT -> INT ID
;