1lexer grammar t007lexer;
2options {
3  language = JavaScript;
4}
5
6FOO: 'f' ('o' | 'a' 'b'+)*;
7