Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
int32-array-unshift.js
blob: 4d4c69dfe37e2c81de1f2bbad2516b0842bce259 [
file
] [
log
] [
blame
]
//@ runDefault
var
x
=
[
2
,
1
];
Array
.
prototype
.
unshift
.
call
(
x
,
3
);
if
(
x
.
toString
()
!=
"3,2,1"
)
throw
"Error: bad result: "
+
describe
(
x
);