aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/PropertyVarCircularComponent3.qml
blob: a90725016e4c886bce789a97e9bd3c126c163f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.0

Rectangle {
    id: rectangle      // will have JS ownership
    objectName: "rectangle"
    width: 10
    height: 10
    property var rectCanary: 5

    Text {
        id: text // will have Eventual-JS ownership
        objectName: "text"
        property var vp: rectangle
        property var textCanary: 10
    }
}