1lexer grammar t005lexer;
2options {
3  language = JavaScript;
4}
5
6FOO: 'f' 'o'+;
7