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