aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4enginebase_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4enginebase_p.h')
-rw-r--r--src/qml/jsruntime/qv4enginebase_p.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4enginebase_p.h b/src/qml/jsruntime/qv4enginebase_p.h
index a713e8eab4..2aa6910a1c 100644
--- a/src/qml/jsruntime/qv4enginebase_p.h
+++ b/src/qml/jsruntime/qv4enginebase_p.h
@@ -65,8 +65,9 @@ namespace QV4 {
struct EngineBase {
struct JSStackFrame {
// callData is directly before this
- QV4::Value jsFunction;
- QV4::Value context;
+ Value jsFunction;
+ Value context;
+ Value accumulator; // ###
// registers follow
};