Files
2023-10-13 14:01:41 +00:00

8 lines
211 B
Plaintext
Executable File

grammar t058rewriteAST65;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : x+=b x+=b -> {new org.antlr.runtime.tree.CommonTree(null)};
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;