Home | History | Annotate | Download | only in Date

Lines Matching refs:prototype

24     ECMA Section:       15.9.5 Properties of the Date prototype object
27 The Date prototype object is itself a Date object (its [[Class]] is
30 The value of the internal [[Prototype]] property of the Date prototype
31 object is the Object prototype object (15.2.3.1).
34 prototype object, the phrase "this Date object" refers to the object that
48 var TITLE = "Properties of the Date Prototype Object";
54 Date.prototype.getClass = Object.prototype.toString;
57 "Date.prototype.getClass",
59 Date.prototype.getClass() );
61 "Date.prototype.valueOf()",
63 Date.prototype.valueOf() );
65 "Date.prototype.__proto__ == Object.prototype",
67 Date.prototype.__proto__ == Object.prototype );