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