blob: 8340a797c660f3f2cac58cce6d7e3218b6addaf3 [file] [log] [blame]
// Make sure that unboxed arrays can be created with all possible inline
// capacities for the different sizes.
var bools = [];
var ints = [];
var doubles = [];
for (var i = 0; i < 150; i++) {
bools.push(false);
ints.push(0);
doubles.push(0.5);
}
for (var i = 0; i < 150; i++) {
bools = bools.slice(1);
ints = ints.slice(1);
doubles = doubles.slice(1);
}