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