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