summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlinstruction_p.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-06-11 08:47:07 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-06-11 08:47:07 (GMT)
commit7e541e9e4832a26339a44ee55d325ba089717e17 (patch)
tree8ac3583740a6df8642b42d9759f7782fbdd9817a /src/declarative/qml/qmlinstruction_p.h
parentaef2140573c5b68062db2f1a2cf968a1637344ae (diff)
downloadQt-7e541e9e4832a26339a44ee55d325ba089717e17.zip
Qt-7e541e9e4832a26339a44ee55d325ba089717e17.tar.gz
Qt-7e541e9e4832a26339a44ee55d325ba089717e17.tar.bz2
Skeleton for property deferring
Diffstat (limited to 'src/declarative/qml/qmlinstruction_p.h')
-rw-r--r--src/declarative/qml/qmlinstruction_p.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlinstruction_p.h b/src/declarative/qml/qmlinstruction_p.h
index 0f1f697..e3b0dfe 100644
--- a/src/declarative/qml/qmlinstruction_p.h
+++ b/src/declarative/qml/qmlinstruction_p.h
@@ -139,6 +139,11 @@ public:
PopFetchedObject,
PopQList,
+ //
+ // Deferred creation
+ //
+ Defer, /* defer */
+
//
// Expression optimizations
//
@@ -270,6 +275,9 @@ public:
int property;
int object;
} assignStackObject;
+ struct {
+ int deferCount;
+ } defer;
};
void dump(QmlCompiledComponent *);