Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
array-concat-runtime-array.js
blob: 5ddd3f1e59c1f22bc8803642aae40c1a6773a765 [
file
] [
log
] [
blame
] [
edit
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
var
array
=
$vm
.
createRuntimeArray
();
var
concat
=
[].
concat
(
array
);
shouldBe
(
concat
.
length
,
0
);