xref: /aosp_15_r20/external/antlr/runtime/JavaScript/tests/functional/t057autoAST45.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1grammar t057autoAST45;
2options { language=JavaScript;output=AST; }
3r : (INT|ID)+ ;
4ID : 'a'..'z' + ;
5INT : '0'..'9' +;
6WS: (' ' | '\n' | '\\t')+ {$channel = HIDDEN;};
7