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