aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/undefinedPropertiesInObjectWrapper.qml
blob: 7e2f15fc2354c1893266e3f7d1ec63497d9db784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.12

QtObject {
    property list<QtObject> entries: [
        QtObject {
            readonly property color color: "green"
        },
        QtObject {
        }
    ]

    property Row row: Row {
        Repeater {
            model: entries
            Rectangle {
                color: model.color ? model.color : "red"
            }
        }
    }
}