Changeset 173600 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Sep 12, 2014, 10:21:44 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r173517 r173600 444 444 if (Debugger* debugger = callFrame->vmEntryGlobalObject()->debugger()) { 445 445 ClearExceptionScope scope(&callFrame->vm()); 446 if ( callFrame->callee())446 if (jsDynamicCast<JSFunction*>(callFrame->callee())) 447 447 debugger->returnEvent(callFrame); 448 448 else … … 915 915 916 916 ProtoCallFrame protoCallFrame; 917 protoCallFrame.init(codeBlock, scope, 0, thisObj, 1);917 protoCallFrame.init(codeBlock, scope, JSCallee::create(vm, scope->globalObject(), scope), thisObj, 1); 918 918 919 919 if (LegacyProfiler* profiler = vm.enabledProfiler()) … … 1196 1196 1197 1197 ProtoCallFrame protoCallFrame; 1198 protoCallFrame.init(codeBlock, scope, 0, thisValue, 1);1198 protoCallFrame.init(codeBlock, scope, JSCallee::create(vm, scope->globalObject(), scope), thisValue, 1); 1199 1199 1200 1200 if (LegacyProfiler* profiler = vm.enabledProfiler())
Note:
See TracChangeset
for help on using the changeset viewer.