Changeset 49607 in webkit for trunk/JavaScriptCore/runtime/JSObject.h
- Timestamp:
- Oct 14, 2009, 8:24:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSObject.h
r49398 r49607 208 208 static PassRefPtr<Structure> createStructure(JSValue prototype) 209 209 { 210 return Structure::create(prototype, TypeInfo(ObjectType, Has StandardGetOwnPropertySlot | HasDefaultMark | HasDefaultGetPropertyNames));210 return Structure::create(prototype, TypeInfo(ObjectType, HasDefaultMark | HasDefaultGetPropertyNames)); 211 211 } 212 212 … … 369 369 ALWAYS_INLINE bool JSCell::fastGetOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 370 370 { 371 if ( structure()->typeInfo().hasStandardGetOwnPropertySlot())371 if (!structure()->typeInfo().overridesGetOwnPropertySlot()) 372 372 return asObject(this)->inlineGetOwnPropertySlot(exec, propertyName, slot); 373 373 return getOwnPropertySlot(exec, propertyName, slot);
Note:
See TracChangeset
for help on using the changeset viewer.