20 lines
303 B
Plaintext
Executable File
20 lines
303 B
Plaintext
Executable File
lexer grammar t011lexer;
|
|
options {
|
|
language = JavaScript;
|
|
}
|
|
|
|
IDENTIFIER:
|
|
('a'..'z'|'A'..'Z'|'_')
|
|
('a'..'z'
|
|
|'A'..'Z'
|
|
|'0'..'9'
|
|
|'_'
|
|
{
|
|
tlog("Underscore");
|
|
tlog("foo");
|
|
}
|
|
)*
|
|
;
|
|
|
|
WS: (' ' | '\n')+;
|