aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4engine_p.h')
-rw-r--r--src/qml/jsruntime/qv4engine_p.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/qml/jsruntime/qv4engine_p.h b/src/qml/jsruntime/qv4engine_p.h
index 4cee69ed33..fcadf57508 100644
--- a/src/qml/jsruntime/qv4engine_p.h
+++ b/src/qml/jsruntime/qv4engine_p.h
@@ -87,26 +87,10 @@ struct CompilationUnit;
struct InternalClass;
struct InternalClassPool;
-struct JSStackFrame {
- enum Offsets {
- JSFunction = 0,
- Context = 1,
- Accumulator = 2
- };
- // callData is directly before this
- union {
- Value jsFunction;
- Value stack[1];
- };
- Value context;
- Value accumulator; // ###
- // registers follow
-};
-
struct Q_QML_EXPORT CppStackFrame {
CppStackFrame *parent;
Function *v4Function;
- JSStackFrame *jsFrame;
+ CallData *jsFrame;
const uchar *instructionPointer;
QString source() const;