Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android15-qpr1-release
/
.
/
runtime
/
Python
/
tests
/
t023scopes.g
blob: 02e69b1a30a4415d3e058c88e259c4c000f31d35 [
file
] [
log
] [
blame
] [
edit
]
grammar t023scopes
;
options
{
language
=
Python
;
}
prog
scope
{
name
}
:
ID
{
$prog
::
name
=
$ID
.
text
;}
;
ID
:
(
'a'
..
'z'
)+
;
WS
:
(
' '
|
'\n'
|
'\r'
)+
{
$channel
=
HIDDEN
}
;