Changeset 49721 in webkit for trunk/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Oct 16, 2009, 6:06:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObject.h
r49694 r49721 268 268 static PassRefPtr<Structure> createStructure(JSValue prototype) 269 269 { 270 return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames));270 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags)); 271 271 } 272 272 273 273 protected: 274 275 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames | JSVariableObject::StructureFlags; 276 274 277 struct GlobalPropertyInfo { 275 278 GlobalPropertyInfo(const Identifier& i, JSValue v, unsigned a)
Note:
See TracChangeset
for help on using the changeset viewer.