OpenGrok
Cross Reference: t007lexer.g
xref
: /
external
/
antlr
/
antlr-3.4
/
runtime
/
Python
/
tests
/
t007lexer.g
Home
|
History
|
Annotate
|
Download
|
only in
tests
1
lexer grammar t007lexer;
2
options {
3
language = Python;
4
}
5
6
FOO: 'f' ('o' | 'a' 'b'+)*;
7