Home | History | Annotate | Download | only in Array

Lines Matching refs:prototype

24     ECMA Section:       15.4.3.1 Array.prototype
25 Description: The initial value of Array.prototype is the built-in
26 Array prototype object (15.4.4).
35 var TITLE = "Array.prototype";
45 var ARRAY_PROTO = Array.prototype;
49 array[item++] = new TestCase( SECTION, "Array.prototype = null; Array.prototype", ARRAY_PROTO, eval("Array.prototype = null; Array.prototype") );
51 array[item++] = new TestCase( SECTION, "delete Array.prototype", false, delete Array.prototype );
52 array[item++] = new TestCase( SECTION, "delete Array.prototype; Array.prototype", ARRAY_PROTO, eval("delete Array.prototype; Array.prototype") );