aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-08-30 09:18:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-02 17:27:36 +0200
commit3bf081203e713330aa1e5e92bc8b30fcc420e228 (patch)
tree1d9adea16f3b03964bd79a374f98b1d71b032502 /src/qml/jsruntime/qv4engine_p.h
parentd8e31c098dade7280f21ca9781ba11bee5e4f201 (diff)
Remove more usages of Object::setPrototype()
Change-Id: I8c49f61bc85e3d98dea90bf05db1a3f22d08f7b1 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4engine_p.h')
-rw-r--r--src/qml/jsruntime/qv4engine_p.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/qml/jsruntime/qv4engine_p.h b/src/qml/jsruntime/qv4engine_p.h
index 17f92ce597..21763ca898 100644
--- a/src/qml/jsruntime/qv4engine_p.h
+++ b/src/qml/jsruntime/qv4engine_p.h
@@ -150,13 +150,6 @@ struct Q_QML_EXPORT ExecutionEngine
Value uRIErrorCtor;
ObjectPrototype *objectPrototype;
- ArrayPrototype *arrayPrototype;
- EvalErrorPrototype *evalErrorPrototype;
- RangeErrorPrototype *rangeErrorPrototype;
- ReferenceErrorPrototype *referenceErrorPrototype;
- SyntaxErrorPrototype *syntaxErrorPrototype;
- TypeErrorPrototype *typeErrorPrototype;
- URIErrorPrototype *uRIErrorPrototype;
VariantPrototype *variantPrototype;
SequencePrototype *sequencePrototype;
@@ -172,6 +165,12 @@ struct Q_QML_EXPORT ExecutionEngine
InternalClass *functionClass;
InternalClass *regExpClass;
InternalClass *errorClass;
+ InternalClass *evalErrorClass;
+ InternalClass *rangeErrorClass;
+ InternalClass *referenceErrorClass;
+ InternalClass *syntaxErrorClass;
+ InternalClass *typeErrorClass;
+ InternalClass *uriErrorClass;
InternalClass *argumentsObjectClass;
InternalClass *strictArgumentsObjectClass;