Changeset 47780 in webkit for trunk/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Aug 26, 2009, 9:52:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObject.h
r47404 r47780 171 171 172 172 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); 173 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&); 173 174 virtual bool hasOwnPropertyForWrite(ExecState*, const Identifier&); 174 175 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&); … … 327 328 } 328 329 330 inline bool JSGlobalObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 331 { 332 if (symbolTableGet(propertyName, descriptor)) 333 return true; 334 return JSVariableObject::getOwnPropertyDescriptor(exec, propertyName, descriptor); 335 } 336 329 337 inline bool JSGlobalObject::hasOwnPropertyForWrite(ExecState* exec, const Identifier& propertyName) 330 338 {
Note:
See TracChangeset
for help on using the changeset viewer.