Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android15-tests-release
/
.
/
runtime
/
Python
/
tests
/
t010lexer.g
blob: a93636cbb58e69ebc8b514e69f7ec494776cbb07 [
file
] [
log
] [
blame
] [
edit
]
lexer grammar t010lexer
;
options
{
language
=
Python
;
}
IDENTIFIER
:
(
'a'
..
'z'
|
'A'
..
'Z'
|
'_'
)
(
'a'
..
'z'
|
'A'
..
'Z'
|
'0'
..
'9'
|
'_'
)*;
WS
:
(
' '
|
'\n'
)+;