diff options
author | Simon Hausmann <[email protected]> | 2013-09-17 17:27:07 +0200 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-09-20 14:27:10 +0200 |
commit | 8d441936d2e8ab8c39a66831a658c192b80ca597 (patch) | |
tree | 61d71c983c685551d403c5b9b91b0e9075c40fc1 /src/qml/compiler/qv4compileddata_p.h | |
parent | c5a8d5b331352e9a1a0a4be7571add641b22238c (diff) |
[new compiler] Initial support for components
We use a dedicated pass through the objects in QV4::CompiledData::QmlUnit to determine
which objects are QQmlComponents. We remember their object indices as well as to which
component other objects belong to (if any).
Change-Id: I97929c57e2ccb2fd380d612002d128359c4bc253
Reviewed-by: Lars Knoll <[email protected]>
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r-- | src/qml/compiler/qv4compileddata_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/compiler/qv4compileddata_p.h b/src/qml/compiler/qv4compileddata_p.h index 5f67d0c215..6d4a3b7548 100644 --- a/src/qml/compiler/qv4compileddata_p.h +++ b/src/qml/compiler/qv4compileddata_p.h @@ -351,6 +351,7 @@ struct Object quint32 nBindings; quint32 offsetToBindings; Location location; + Location locationOfIdProperty; // Function[] // Property[] // Signal[] |