Changeset 49721 in webkit for trunk/JavaScriptCore/runtime/JSONObject.h
- Timestamp:
- Oct 16, 2009, 6:06:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSONObject.h
r49694 r49721 42 42 static PassRefPtr<Structure> createStructure(JSValue prototype) 43 43 { 44 return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot));44 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags)); 45 45 } 46 46 47 47 static void markStringifiers(MarkStack&, Stringifier*); 48 49 protected: 50 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | JSObject::StructureFlags; 48 51 49 52 private:
Note:
See TracChangeset
for help on using the changeset viewer.