7 lines
91 B
Plaintext
7 lines
91 B
Plaintext
|
|
lexer grammar t007lexer;
|
||
|
|
options {
|
||
|
|
language = JavaScript;
|
||
|
|
}
|
||
|
|
|
||
|
|
FOO: 'f' ('o' | 'a' 'b'+)*;
|