summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp b/src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp
index c89ebf8..62e42fe 100644
--- a/src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp
+++ b/src/3rdparty/webkit/JavaScriptCore/runtime/CallData.cpp
@@ -27,32 +27,9 @@
#include "CallData.h"
#include "JSFunction.h"
-#include "JSGlobalObject.h"
-
-#ifdef QT_BUILD_SCRIPT_LIB
-#include "Debugger.h"
-#include "DebuggerCallFrame.h"
-#endif
namespace JSC {
-#ifdef QT_BUILD_SCRIPT_LIB
-JSValue JSC::NativeFuncWrapper::operator() (ExecState* exec, JSObject* jsobj, JSValue thisValue, const ArgList& argList) const
-{
- Debugger* debugger = exec->lexicalGlobalObject()->debugger();
- if (debugger)
- debugger->callEvent(DebuggerCallFrame(exec), -1, -1);
-
- JSValue returnValue = ptr(exec, jsobj, thisValue, argList);
-
- if (debugger)
- debugger->functionExit(returnValue, -1);
-
- return returnValue;
-}
-#endif
-
-
JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args)
{
if (callType == CallTypeHost)