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