Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
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
);