aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-06-27 12:19:04 +0200
committerLars Knoll <lars.knoll@qt.io>2018-07-03 08:08:46 +0000
commit0b6bc89c61d6fc10bd09dfb7374314d993f0c3c5 (patch)
treedb2398c6b9460ce79e738a7fd871134466df045f /src/qml/jsruntime/qv4engine.cpp
parent8e7f28339f57d22e4a8bdb30af449151c89d75db (diff)
Remove ExecutionEngine::setCurrentContext()
It's unused and shouldn't exist. Also de-inline currentContext() to avoid a dependency on the CppStackFrame in the header. Change-Id: I44724f8097883dc1b1064430778f45f7811460df Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index e3a99e9ddb..64d6583f60 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -611,6 +611,11 @@ ExecutionEngine::~ExecutionEngine()
delete [] argumentsAccessors;
}
+ExecutionContext *ExecutionEngine::currentContext() const
+{
+ return static_cast<ExecutionContext *>(&currentStackFrame->jsFrame->context);
+}
+
#if QT_CONFIG(qml_debug)
void ExecutionEngine::setDebugger(Debugging::Debugger *debugger)
{