aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/largeBindings.formatted.qml
blob: 8bd502ccab3e10477ff4337620602d767d5ece4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
QtObject {
    small1: 3
    small2: foo
    smallButNeedsBraces: {
        if (foo) {
            bar();
        }
    }
    // THIS NEEDS TO BE LAST
    largeBinding: {
        var x = 300;
        console.log(x);
    }
}