Home | History | Annotate | Download | only in Array

Lines Matching refs:prototype

24     ECMA Section: 15.4.4.3-1 Array.prototype.join()
33 ECMA-262 Ed.3 Section 15.4.4.5 Array.prototype.join()
43 writeHeaderToLog( SECTION + " Array.prototype.join()");
52 var ARR_PROTOTYPE = Array.prototype;
54 array[item++] = new TestCase( SECTION, "Array.prototype.join.length", 1, Array.prototype.join.length );
55 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length", false, delete Array.prototype.join.length );
56 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length; Array.prototype.join.length", 1, eval("delete Array.prototype.join.length; Array.prototype.join.length") );
157 this.join = Array.prototype.join;
158 this.getClass = Object.prototype.toString;