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