aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlobjectcreator_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlobjectcreator_p.h')
-rw-r--r--src/qml/qml/qqmlobjectcreator_p.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/qml/qml/qqmlobjectcreator_p.h b/src/qml/qml/qqmlobjectcreator_p.h
index 92f40648d3..2d776058ca 100644
--- a/src/qml/qml/qqmlobjectcreator_p.h
+++ b/src/qml/qml/qqmlobjectcreator_p.h
@@ -76,16 +76,20 @@ public:
bool resolve();
protected:
+ void findAndRegisterImplicitComponents(const QtQml::QmlObject *obj, int objectIndex);
bool collectIdsAndAliases(int objectIndex);
bool resolveAliases();
- bool isComponentType(int typeNameIndex) const
- { return resolvedTypes.value(typeNameIndex).type == 0; }
+ QQmlEnginePrivate *enginePrivate;
+ QQmlJS::MemoryPool *pool;
- const QList<QtQml::QmlObject*> &qmlObjects;
+ QList<QtQml::QmlObject*> *qmlObjects;
const int indexOfRootObject;
- // indices of objects that are of type QQmlComponent
+ // indices of the objects that are actually Component {}
+ QVector<int> componentRoots;
+ // indices of objects that are the beginning of a new component
+ // scope. This is sorted and used for binary search.
QVector<int> componentBoundaries;
int _componentIndex;
@@ -93,7 +97,7 @@ protected:
QHash<int, int> *_objectIndexToIdInScope;
QList<int> _objectsWithAliases;
- const QHash<int, QQmlCompiledData::TypeReference> resolvedTypes;
+ QHash<int, QQmlCompiledData::TypeReference> *resolvedTypes;
const QList<QQmlPropertyCache *> propertyCaches;
QList<QByteArray> *vmeMetaObjectData;
QHash<int, int> *objectIndexToIdForRoot;