Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android15-tests-release
/
.
/
runtime
/
JavaScript
/
tests
/
functional
/
t057autoAST34.g
blob: f82d0cd57e58fc6c786aa2a562c1ee10a4a16f79 [
file
] [
log
] [
blame
] [
edit
]
grammar t057autoAST34
;
options
{
language
=
JavaScript
;
output
=
AST
;}
a returns
[
result
]
:
id
=
ID id
=
ID
{
$result
=
"2nd id="
+
$id
.
text
+
";"
;}
;
ID
:
'a'
..
'z'
+
;
INT
:
'0'
..
'9'
+;
WS
:
(
' '
|
'\n'
)
{
$channel
=
HIDDEN
;}
;