t058rewriteAST12.g revision 324c4644fee44b9898524c09511bd33c3f12e2df
1
2grammar t058rewriteAST12;
3options {language=JavaScript;output=AST;}
4a : 'void' ID INT -> 'void' ^(INT ID);
5ID : 'a'..'z'+ ;
6INT : '0'..'9'+;
7WS : (' '|'\n') {$channel=HIDDEN;} ;