7 lines
82 B
Plaintext
7 lines
82 B
Plaintext
|
|
lexer grammar t009lexer;
|
||
|
|
options {
|
||
|
|
language = JavaScript;
|
||
|
|
}
|
||
|
|
|
||
|
|
DIGIT: '0' .. '9';
|