diff options
author | Allan Sandfeld Jensen <allan.jensen@digia.com> | 2013-09-13 12:51:20 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-09-19 20:50:05 +0200 |
commit | d441d6f39bb846989d95bcf5caf387b42414718d (patch) | |
tree | e367e64a75991c554930278175d403c072de6bb8 /Source/JavaScriptCore/debugger/DebuggerActivation.cpp | |
parent | 0060b2994c07842f4c59de64b5e3e430525c4b90 (diff) | |
download | qtwebkit-d441d6f39bb846989d95bcf5caf387b42414718d.tar.gz |
Import Qt5x2 branch of QtWebkit for Qt 5.2
Importing a new snapshot of webkit.
Change-Id: I2d01ad12cdc8af8cb015387641120a9d7ea5f10c
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/debugger/DebuggerActivation.cpp')
-rw-r--r-- | Source/JavaScriptCore/debugger/DebuggerActivation.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/JavaScriptCore/debugger/DebuggerActivation.cpp b/Source/JavaScriptCore/debugger/DebuggerActivation.cpp index e23468035..eec2d6bd7 100644 --- a/Source/JavaScriptCore/debugger/DebuggerActivation.cpp +++ b/Source/JavaScriptCore/debugger/DebuggerActivation.cpp @@ -27,6 +27,7 @@ #include "DebuggerActivation.h" #include "JSActivation.h" +#include "Operations.h" namespace JSC { @@ -34,17 +35,17 @@ ASSERT_HAS_TRIVIAL_DESTRUCTOR(DebuggerActivation); const ClassInfo DebuggerActivation::s_info = { "DebuggerActivation", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(DebuggerActivation) }; -DebuggerActivation::DebuggerActivation(JSGlobalData& globalData) - : JSNonFinalObject(globalData, globalData.debuggerActivationStructure.get()) +DebuggerActivation::DebuggerActivation(VM& vm) + : JSNonFinalObject(vm, vm.debuggerActivationStructure.get()) { } -void DebuggerActivation::finishCreation(JSGlobalData& globalData, JSObject* activation) +void DebuggerActivation::finishCreation(VM& vm, JSObject* activation) { - Base::finishCreation(globalData); + Base::finishCreation(vm); ASSERT(activation); ASSERT(activation->isActivationObject()); - m_activation.set(globalData, this, jsCast<JSActivation*>(activation)); + m_activation.set(vm, this, jsCast<JSActivation*>(activation)); } void DebuggerActivation::visitChildren(JSCell* cell, SlotVisitor& visitor) |