Changeset 34518 in webkit for trunk/JavaScriptCore/API/JSCallbackObjectFunctions.h
- Timestamp:
- Jun 12, 2008, 9:53:56 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObjectFunctions.h
r34361 r34518 438 438 JSValue* JSCallbackObject<Base>::staticValueGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 439 439 { 440 ASSERT(slot.slotBase()->i nherits(&JSCallbackObject::info));440 ASSERT(slot.slotBase()->isObject(&JSCallbackObject::info)); 441 441 JSCallbackObject* thisObj = static_cast<JSCallbackObject*>(slot.slotBase()); 442 442 … … 459 459 JSValue* JSCallbackObject<Base>::staticFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 460 460 { 461 ASSERT(slot.slotBase()->i nherits(&JSCallbackObject::info));461 ASSERT(slot.slotBase()->isObject(&JSCallbackObject::info)); 462 462 JSCallbackObject* thisObj = static_cast<JSCallbackObject*>(slot.slotBase()); 463 463 … … 485 485 JSValue* JSCallbackObject<Base>::callbackGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot) 486 486 { 487 ASSERT(slot.slotBase()->i nherits(&JSCallbackObject::info));487 ASSERT(slot.slotBase()->isObject(&JSCallbackObject::info)); 488 488 JSCallbackObject* thisObj = static_cast<JSCallbackObject*>(slot.slotBase()); 489 489
Note:
See TracChangeset
for help on using the changeset viewer.