Lines Matching refs:Array
36 var a = new Array(pos);
82 // Non-numeric properties on the prototype or the array shouldn't get
108 var a = new Array(pos);
128 Array.prototype["123"] = 'baz';
140 Array.prototype["123"] = undefined;
146 Array.prototype[123] = 'baz';
152 // Non-numeric properties on the prototype or the array shouldn't get
154 Array.prototype.moe = 'joe';
165 Array.prototype.moe = undefined;
187 assertEquals(9, holey.length); // hole in embedded array is ignored
197 delete Array.prototype[123];
205 // Make first array change length of second array.
213 // Make first array change length of second array massively.