Lines Matching refs:Array
29 // array caused invalid marking bit patterns on lazily swept pages.
34 var head = new Array(1);
40 tail[1] = new Array(1000);
43 array = new Array(100);
46 // At this point "array" should have been promoted to old-space and be
48 // the array to trigger left-trimming operations.
49 assertEquals(100, array.length);
51 array.shift();
53 assertEquals(50, array.length);
55 // At this point "array" should have been trimmed from the left with
60 tail[1] = new Array(1000);