bug 571789 - merging JSObjectOps and JSExtendedClass into JSClass. r=jorendorff

This commit is contained in:
Igor Bukanov
2010-06-12 18:29:04 +02:00
parent 29320cf061
commit e51fde4de4
60 changed files with 1602 additions and 1506 deletions

View File

@@ -485,9 +485,13 @@ Class js_DateClass = {
js_Date_str,
JSCLASS_HAS_RESERVED_SLOTS(JSObject::DATE_FIXED_RESERVED_SLOTS) |
JSCLASS_HAS_CACHED_PROTO(JSProto_Date),
PropertyStub, PropertyStub, PropertyStub, PropertyStub,
EnumerateStub, ResolveStub, ConvertStub, NULL,
JSCLASS_NO_OPTIONAL_MEMBERS
PropertyStub, /* addProperty */
PropertyStub, /* delProperty */
PropertyStub, /* getProperty */
PropertyStub, /* setProperty */
EnumerateStub,
ResolveStub,
ConvertStub
};
/* for use by date_parse */