Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android15-qpr1-release
/
.
/
runtime
/
Python
/
tests
/
t037rulePropertyRef.g
blob: d2ab177daa17fd8b33dd9e43f34c6aa45ea26763 [
file
] [
log
] [
blame
] [
edit
]
grammar t037rulePropertyRef
;
options
{
language
=
Python
;
}
a returns
[
bla
]
@after
{
$bla
=
$start
,
$stop
,
$text
}
:
A
+
;
A
:
'a'
..
'z'
;
WS
:
' '
+
{
$channel
=
HIDDEN
};