aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-11-06 15:59:01 +0100
committerLars Knoll <lars.knoll@qt.io>2017-11-14 21:46:14 +0000
commit30ada3da8635f3e496ea6cb9483aa104d32e5a61 (patch)
tree5573b2a95dc25a5c8fa17de79179ef6bc10294f4 /src/qml/jsruntime/qv4engine_p.h
parentf0a412020f493f01205c302cf48927dd5e3b80b6 (diff)
Clean up ArgumentsObject handling
Introduce a proper strict arguments object. Change-Id: Ie4e7f904b3a0e03893b18b3c6709f4f25dbc1030 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4engine_p.h')
-rw-r--r--src/qml/jsruntime/qv4engine_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4engine_p.h b/src/qml/jsruntime/qv4engine_p.h
index aaf69f6555..d165294a87 100644
--- a/src/qml/jsruntime/qv4engine_p.h
+++ b/src/qml/jsruntime/qv4engine_p.h
@@ -92,6 +92,8 @@ struct Q_QML_EXPORT CppStackFrame {
CppStackFrame *parent;
Function *v4Function;
CallData *jsFrame;
+ const Value *originalArguments;
+ int originalArgumentsCount;
const uchar *instructionPointer;
QString source() const;