From 2666fe4a1440cc798b9db68fcc807450d46069c2 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 27 Jun 2018 14:18:17 +0200 Subject: Move the C++ and JS stack frame definitions into it's own file Change-Id: I86e89e07197aec6071809c2d32bd5c98cb7ac6f6 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4function_p.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/qml/jsruntime/qv4function_p.h') diff --git a/src/qml/jsruntime/qv4function_p.h b/src/qml/jsruntime/qv4function_p.h index ff2d86b89f..9deccaf72a 100644 --- a/src/qml/jsruntime/qv4function_p.h +++ b/src/qml/jsruntime/qv4function_p.h @@ -51,7 +51,6 @@ // #include "qv4global_p.h" -#include #include #include #include @@ -62,6 +61,8 @@ class MacroAssemblerCodeRef; QT_BEGIN_NAMESPACE +struct QQmlSourceLocation; + namespace QV4 { struct Q_QML_EXPORT Function { @@ -100,10 +101,7 @@ struct Q_QML_EXPORT Function { inline bool isArrowFunction() const { return compiledFunction->flags & CompiledData::Function::IsArrowFunction; } inline bool isGenerator() const { return compiledFunction->flags & CompiledData::Function::IsGenerator; } - QQmlSourceLocation sourceLocation() const - { - return QQmlSourceLocation(sourceFile(), compiledFunction->location.line, compiledFunction->location.column); - } + QQmlSourceLocation sourceLocation() const; Function *nestedFunction() const { -- cgit v1.2.3