aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_engine.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-11-19 22:24:12 +0100
committerErik Verbruggen <erik.verbruggen@digia.com>2012-11-20 10:43:19 +0100
commit590b9491836fc5357393c5b89c2a8f82f5ec24b6 (patch)
treea156d8317117121cbaa6e1c2d9051b54a071c104 /qmljs_engine.h
parentbe507044a9f0eefb247fb9e385808d5d39b5dc38 (diff)
Move the exception variable into the engine
It's easier to store this in the engine then in the execution context. Change-Id: I01ff447602a7d785165e774bdf6e1735c073be2d Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'qmljs_engine.h')
-rw-r--r--qmljs_engine.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmljs_engine.h b/qmljs_engine.h
index d22cd85c50..2404ebd7f8 100644
--- a/qmljs_engine.h
+++ b/qmljs_engine.h
@@ -136,6 +136,7 @@ struct ExecutionEngine
};
QVector<ExceptionHandler> unwindStack;
+ Value exception;
ExecutionEngine(EValISelFactory *factory);