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