blob: 68ce360166f9c243c5f47271a9c8f40fb65f49d5 [file] [log] [blame]
grammar t058rewriteAST46;
options {language=JavaScript;output=AST;}
tokens {MOD;}
a : ID (',' ID)* ';' -> ID+ ID+ ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ;