11 lines
214 B
Plaintext
Executable File
11 lines
214 B
Plaintext
Executable File
// @@ANTLR Tool Options@@: -trace
|
|
tree grammar t051treeRewriteASTjWalker;
|
|
options {
|
|
language=JavaScript;
|
|
output=AST;
|
|
ASTLabelType=CommonTree;
|
|
tokenVocab=t051treeRewriteASTj;
|
|
}
|
|
a : ^(x=ID y=INT)
|
|
;
|