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