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