Home | History | Annotate | Download | only in Boolean

Lines Matching refs:prototype

24     ECMA Section:       15.6.4 Properties of the Boolean Prototype Object
27 The Boolean prototype object is itself a Boolean object (its [[Class]] is
30 The value of the internal [[Prototype]] property of the Boolean prototype object
31 is the Object prototype object (15.2.3.1).
43 writeHeaderToLog( SECTION + " Properties of the Boolean Prototype Object");
51 array[item++] = new TestCase( SECTION, "typeof Boolean.prototype == typeof( new Boolean )", true, typeof Boolean.prototype == typeof( new Boolean ) );
52 array[item++] = new TestCase( SECTION, "typeof( Boolean.prototype )", "object", typeof(Boolean.prototype) );
54 "Boolean.prototype.toString = Object.prototype.toString; Boolean.prototype.toString()",
56 eval("Boolean.prototype.toString = Object.prototype.toString; Boolean.prototype.toString()") );
57 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() );