aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/LazyBindingComponent.qml
blob: 81cb56f0e5367bec04cfe21a4a0e5faaa59022c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item
{
    property int someInt: 4
    property var variantArray: [1, 2]
    property int arrayLength: 0

    onSomeIntChanged:
    {
        arrayLength = variantArray.length
    }
}