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