aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4compileddata_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-08-16 15:57:50 +0200
committerLars Knoll <lars.knoll@digia.com>2013-08-16 19:13:02 +0200
commit0d4657cc172d8b3dbd491da10ff88912603b0024 (patch)
tree4cdaa5e7252555a06e45f7d4f73ac6d256659f3a /src/qml/compiler/qv4compileddata_p.h
parent75cc05fcf472453fc33b262c70af46344adff666 (diff)
Initial port of moth to the new compile data structures
Change-Id: I2ead40c5c8c9b12b29c48c387ea424838d1f7d9e Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r--src/qml/compiler/qv4compileddata_p.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/qml/compiler/qv4compileddata_p.h b/src/qml/compiler/qv4compileddata_p.h
index b2bc25bdbe..611d916ea8 100644
--- a/src/qml/compiler/qv4compileddata_p.h
+++ b/src/qml/compiler/qv4compileddata_p.h
@@ -328,6 +328,7 @@ struct CompilationUnit
QV4::Lookup *runtimeLookups;
QV4::Value *runtimeRegularExpressions;
QV4::InternalClass **runtimeClasses;
+ QList<QV4::Function *> runtimeFunctions;
QV4::Function *linkToEngine(QV4::ExecutionEngine *engine);
@@ -342,16 +343,6 @@ protected:
virtual QV4::Function *linkBackendToEngine(QV4::ExecutionEngine *engine) = 0;
};
-struct MothCompilationUnit : public CompilationUnit
-{
- virtual ~MothCompilationUnit() {
- // free all bytecode
- }
-
- // vector of bytecode
-
-};
-
}
}