aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml
blob: 94b58779570b3981fae4e2731c57e9ac69bdcbd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Item {
    function x() {
        var copiedItem = "copied value";
        var computedItem = "computedName";
        var obj = {
            "identifierName": "identifier value",
            "string name": "string value",
            "Infinity": "numeric value",
            [computedItem]: "computed value",
            "copiedItem": copiedItem
        };
    }
}