Home | History | Annotate | Download | only in Number

Lines Matching refs:prototype

28     The Number prototype object is itself a Number object (its [[Class]] is
31 The value of the internal [[Prototype]] property of the Number prototype
32 object is the Object prototype object (15.2.3.1).
35 prototype object, the phrase "this Number object" refers to the object
48 var TITLE = "Properties of the Number Prototype Object";
59 "Number.prototype.toString=Object.prototype.toString;Number.prototype.toString()",
61 eval("Number.prototype.toString=Object.prototype.toString;Number.prototype.toString()") );
62 array[item++] = new TestCase( SECTION, "typeof Number.prototype", "object", typeof Number.prototype );
63 array[item++] = new TestCase( SECTION, "Number.prototype.valueOf()", 0, Number.prototype.valueOf() );
67 // array[item++] = new TestCase( SECTION, "Number.prototype.__proto__", Object.prototype, Number.prototype.__proto__ );
68 // array[item++] = new TestCase( SECTION, "Number.prototype.__proto__ == Object.prototype", true, Number.prototype.__proto__ == Object.prototype );