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