Sign in
android
/
platform
/
external
/
antlr
/
refs/heads/android13-mainline-go-resolv-release
/
.
/
runtime
/
JavaScript
/
tests
/
functional
/
t057autoAST35.g
blob: a4c329c731d0539db70c085ff2e49ee85a323e9b [
file
] [
log
] [
blame
] [
edit
]
grammar t057autoAST35
;
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
;}
;