xref
: /
external
/
antlr
/
runtime
/
Python3
/
tests
/
t006lexer.g
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
lexer grammar t006lexer;
2
options {
3
language = Python3;
4
}
5
6
FOO: 'f' ('o' | 'a')*;
7