blob: 8e777a5fd25346221f5e3a7e800deaaa8aee94d2 [file] [log] [blame]
grammar t058rewriteAST59;
options {language=JavaScript;output=AST;}
tokens {BLOCK;}
a : x+=b x+=b -> $x $x*;
b : ID ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;