Sign in
webkit
/
WebKit
/
1f5bafe5ae87a22fbc029b76fb26b628be327746
/
.
/
JSTests
/
stress
/
double-array-unshift.js
blob: fc9aeb874b8b19a3c1e594b8bca7f971db12dc25 [
file
] [
log
] [
blame
]
//@ runDefault
var
x
=
[
2.5
,
1.5
];
Array
.
prototype
.
unshift
.
call
(
x
,
3.5
);
if
(
x
.
toString
()
!=
"3.5,2.5,1.5"
)
throw
"Error: bad result: "
+
describe
(
x
);