Home | History | Annotate | Download | only in mjsunit

Lines Matching defs:Array

29 // Tests below verify that elements set on Array.prototype's proto propagate
30 // for various Array.prototype functions (like unshift, shift, etc.)
32 // array-elements-from-array-prototype.js
33 // array-elements-from-array-prototype-chain.js
34 // array-elements-from-object-prototype.js
46 Array.prototype.__proto__ = {3: at3};
47 Array.prototype.__proto__.__proto__ = {7: at7};
49 var a = new Array(13)
58 // Side-effects: Array.prototype[3] percolates into a[2] and Array.prototype[7[
72 // Side-effects: Array.prototype[3] now percolates into a[5] and Array.prototype[7]
119 // Note: sliced[3] comes directly from Array.prototype[3]
133 // Shrking array.
161 // Growing array.