Changeset 15385 in webkit for trunk/JavaScriptCore/API/JSCallbackObject.cpp
- Timestamp:
- Jul 12, 2006, 3:01:06 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObject.cpp
r15384 r15385 288 288 } 289 289 290 void JSCallbackObject::getPropertyList(ExecState* exec, ReferenceList& propertyList, bool recursive) 291 { 292 JSContextRef context = toRef(exec); 290 void JSCallbackObject::getPropertyList(ReferenceList& propertyList, bool recursive) 291 { 293 292 JSObjectRef thisRef = toRef(this); 294 293 295 294 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { 296 295 if (JSObjectAddPropertiesToListCallback addPropertiesToList = jsClass->callbacks.addPropertiesToList) 297 addPropertiesToList( context, thisRef, toRef(&propertyList), toRef(exec->exceptionSlot()));296 addPropertiesToList(thisRef, toRef(&propertyList)); 298 297 299 298 if (__JSClass::StaticValuesTable* staticValues = jsClass->staticValues) { … … 320 319 } 321 320 322 JSObject::getPropertyList( exec,propertyList, recursive);321 JSObject::getPropertyList(propertyList, recursive); 323 322 } 324 323
Note:
See TracChangeset
for help on using the changeset viewer.