Changeset 114702 in webkit for trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
- Timestamp:
- Apr 19, 2012, 5:17:41 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r114317 r114702 793 793 794 794 if (callType == CallTypeHost) { 795 NativeCallFrameTracer tracer(globalData, execCallee); 796 execCallee->setCallee(asObject(callee)); 795 797 globalData->hostCallReturnValue = JSValue::decode(callData.native.function(execCallee)); 796 798 if (globalData->exception) … … 813 815 814 816 if (constructType == ConstructTypeHost) { 817 NativeCallFrameTracer tracer(globalData, execCallee); 818 execCallee->setCallee(asObject(callee)); 815 819 globalData->hostCallReturnValue = JSValue::decode(constructData.native.function(execCallee)); 816 820 if (globalData->exception)
Note:
See TracChangeset
for help on using the changeset viewer.