Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / PropertyVarCircularComponent3.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     id: rectangle      // will have JS ownership
5     objectName: "rectangle"
6     width: 10
7     height: 10
8     property var rectCanary: 5
9
10     Text {
11         id: text // will have Eventual-JS ownership
12         objectName: "text"
13         property var vp: rectangle
14         property var textCanary: 10
15     }
16 }