Changeset 163590 in webkit for trunk/Source/JavaScriptCore/API/ObjCCallbackFunction.mm
- Timestamp:
- Feb 6, 2014, 5:56:45 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/ObjCCallbackFunction.mm
r159351 r163590 465 465 JSValueRef result; 466 466 @autoreleasepool { 467 [context beginCallbackWithData:&callbackData thisValue:thisObject argumentCount:argumentCount arguments:arguments];467 [context beginCallbackWithData:&callbackData calleeValue:function thisValue:thisObject argumentCount:argumentCount arguments:arguments]; 468 468 result = impl->call(context, thisObject, argumentCount, arguments, exception); 469 469 if (context.exception) … … 485 485 JSValueRef result; 486 486 @autoreleasepool { 487 [context beginCallbackWithData:&callbackData thisValue:nil argumentCount:argumentCount arguments:arguments];487 [context beginCallbackWithData:&callbackData calleeValue:constructor thisValue:nil argumentCount:argumentCount arguments:arguments]; 488 488 result = impl->call(context, NULL, argumentCount, arguments, exception); 489 489 if (context.exception)
Note:
See TracChangeset
for help on using the changeset viewer.