Changeset 49721 in webkit for trunk/JavaScriptCore/runtime/JSNotAnObject.h
- Timestamp:
- Oct 16, 2009, 6:06:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSNotAnObject.h
r49694 r49721 63 63 static PassRefPtr<Structure> createStructure(JSValue prototype) 64 64 { 65 return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames));65 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags)); 66 66 } 67 67 68 68 private: 69 70 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames | JSObject::StructureFlags; 71 69 72 // JSValue methods 70 73 virtual JSValue toPrimitive(ExecState*, PreferredPrimitiveType) const;
Note:
See TracChangeset
for help on using the changeset viewer.