Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android15-tests-release
/
.
/
runtime
/
JavaScript
/
tests
/
functional
/
t058rewriteAST43.g
blob: c1daec627c29e1982a3e11f099028fc1f1d5d053 [
file
] [
log
] [
blame
] [
edit
]
grammar t058rewriteAST43
;
options
{
language
=
JavaScript
;
output
=
AST
;}
a
:
modifier
?
type ID
(
','
ID
)*
';'
->
^(
type modifier
?
ID
)+
;
type
:
'int'
;
modifier
:
'public'
;
ID
:
'a'
..
'z'
+
;
WS
:
(
' '
|
'\n'
)
{
$channel
=
HIDDEN
;}
;