aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertyQJSValue.15.qml
blob: acbfd6e106d967d1c55d26ecfeea9d3de62cba4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 2.0
import Qt.test 1.0

MyQmlObject {
    property bool test: false
    qjsvalue: [ Qt.binding(function() { return testFunction() + 12; }) ]
    property int a: 100
    property int b

    function testFunction() {
        return a * 3;
    }

    Component.onCompleted: {
        b = qjsvalue[0];
        if (b != 312) return;
        a = 120;
        if (b != 372) return;
        test = true;
    }
}