blob: 5df07320771f6297ee7cdb06cc1b37e91f8def0d [file] [log] [blame]
grammar t058rewriteAST20;
options {language=JavaScript;output=AST;}
a : (x=ID)? -> $x?;
ID : 'a'..'z'+ ;
INT : '0'..'9'+;
WS : (' '|'\n') {$channel=HIDDEN;} ;