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