aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml
blob: c7d50abb324b65657f712e70d1f3aab5d13dd90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
        };
    }

}