mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 22:40:28 +02:00
* [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time)
26 lines
601 B
JavaScript
26 lines
601 B
JavaScript
function shouldBe(actual, expected) {
|
|
if (actual !== expected)
|
|
throw new Error('bad value: ' + actual);
|
|
}
|
|
|
|
var array = [1, 2, 3, 4, 5];
|
|
var array2 = [1, "HELLO", 3, 4, 5];
|
|
var array3 = [0.1, "OK", 0.3, 0.4, 0.5];
|
|
ensureArrayStorage(array2);
|
|
array.ok = 42;
|
|
array2.ok = 42;
|
|
array3.ok = 42;
|
|
|
|
// Arrayify(ArrayStorage) works with ftl-eager
|
|
function testArrayStorage(array)
|
|
{
|
|
return array.length;
|
|
}
|
|
noInline(testArrayStorage);
|
|
|
|
for (var i = 0; i < 1e6; ++i) {
|
|
shouldBe(testArrayStorage(array), 5);
|
|
shouldBe(testArrayStorage(array2), 5);
|
|
shouldBe(testArrayStorage(array3), 5);
|
|
}
|