aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/reformatter/objectliteral.js
blob: d260712166d156614ed2fb5b0998f8cd45366ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var x = {
    "x": 12,
    "y": {
        "x": 12,
        "y": "abc",
        "z": function (x) {
            return a
        },
        "abc": 15
    },
    "z": 12
}

var empty_object = {}