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