Sign in
webkit
/
WebKit
/
3edaba2ba8773ca7f680c84dc462d786504282f8
/
.
/
JSTests
/
stress
/
jsimmutablebutterfly-get-must-return-double-boxed-value.js
blob: 72789406db2d63a76dee68d4805213ba1f5489cf [
file
] [
log
] [
blame
]
const
a0
=
[
2
,
0.3
];
const
o
=
{};
function
foo
(
arg
)
{
for
(
const
c of
'123456'
)
{
let b
=
arg instanceof
Array
;
let cond
=
a0
[-
b
]
<
1
;
do
{}
while
(
cond
);
o
[
arg
]
=
undefined
;
}
}
foo
([]);
foo
(
''
);
foo
(
''
);
foo
(
''
);