blob: a93636cbb58e69ebc8b514e69f7ec494776cbb07 [file] [log] [blame]
lexer grammar t010lexer;
options {
language = Python;
}
IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
WS: (' ' | '\n')+;