6 lines
87 B
Text
6 lines
87 B
Text
lexer grammar t007lexer;
|
|
options {
|
|
language = Python;
|
|
}
|
|
|
|
FOO: 'f' ('o' | 'a' 'b'+)*;
|