blob: 37a5ea3da3c0cf4cab3b9f2adceb5ea3f8044557 [file] [log] [blame] [edit]
function shouldBe(actual, expected) {
if (actual !== expected)
throw new Error('bad value: ' + String(actual) + ' ' + String(expected));
}
function test(constructor)
{
var array = new constructor(1, 2);
for (var i = 0; i < 20; ++i)
array.push(i);
return array;
}
noInline(test);
for (var i = 0; i < testLoopCount; ++i) {
var result = test(Array);
shouldBe(JSON.stringify(result), `[1,2,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]`);
}