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