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