Sign in
android
/
platform
/
external
/
antlr
/
14aa962455d4270e2e2c0c0ee50ba63ccee2f100
/
.
/
runtime
/
Python
/
tests
/
t043synpred.g
blob: 7294f23f5d88fd86fbab817816f1be76e2073d90 [
file
] [
log
] [
blame
]
grammar t043synpred
;
options
{
language
=
Python
;
}
a
:
((
s
+
P
)=>
s
+
b
)?
E
;
b
:
P
'foo'
;
s
:
S
;
S
:
' '
;
P
:
'+'
;
E
:
'>'
;