xref: /aosp_15_r20/external/antlr/runtime/JavaScript/tests/functional/t058rewriteAST42.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1
2grammar t058rewriteAST42;
3options {language=JavaScript;output=AST;}
4a : type ID (',' ID)* ';' -> ^(type ID)+ ;
5type : 'int' ;
6ID : 'a'..'z'+ ;
7WS : (' '|'\n') {$channel=HIDDEN;} ;