Sign in
android
/
platform
/
external
/
antlr
/
14aa962455d4270e2e2c0c0ee50ba63ccee2f100
/
.
/
runtime
/
Python
/
tests
/
t031emptyAlt.g
blob: 0afa596156c1de0d8adf0f8dcb0d3e74124c455e [
file
] [
log
] [
blame
]
grammar t031emptyAlt
;
options
{
language
=
Python
;
}
r
:
NAME
(
{
self
.
cond
}?=>
WS
+
NAME
|
)
EOF
;
NAME
:
(
'a'
..
'z'
)
(
'a'
..
'z'
|
'0'
..
'9'
)+;
NUMBER
:
(
'0'
..
'9'
)+;
WS
:
' '
+;