aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'qmljs_engine.h')
-rw-r--r--qmljs_engine.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/qmljs_engine.h b/qmljs_engine.h
index 2837adb882..520acab675 100644
--- a/qmljs_engine.h
+++ b/qmljs_engine.h
@@ -68,6 +68,7 @@ struct ErrorObject;
struct ArgumentsObject;
struct ExecutionContext;
struct ExecutionEngine;
+class MemoryManager;
struct ObjectPrototype;
struct StringPrototype;
@@ -87,6 +88,7 @@ struct URIErrorPrototype;
struct ExecutionEngine
{
+ MemoryManager *memoryManager;
EvalISelFactory *iselFactory;
ExecutionContext *current;
ExecutionContext *rootContext;
@@ -148,7 +150,7 @@ struct ExecutionEngine
struct StringPool *stringPool;
- ExecutionEngine(EvalISelFactory *iselFactory);
+ ExecutionEngine(MemoryManager *memoryManager, EvalISelFactory *iselFactory);
~ExecutionEngine();
ExecutionContext *newContext();