xref
: /
external
/
antlr
/
runtime
/
Python3
/
tests
/
t009lexer.g
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
lexer grammar t009lexer;
2
options {
3
language = Python3;
4
}
5
6
DIGIT: '0' .. '9';
7