xref: /aosp_15_r20/external/antlr/runtime/JavaScript/tests/functional/t007lexer.g (revision 16467b971bd3e2009fad32dd79016f2c7e421deb)
1lexer grammar t007lexer;
2options {
3  language = JavaScript;
4}
5
6FOO: 'f' ('o' | 'a' 'b'+)*;
7