aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml
blob: 921401488999f9d0c3b23e2dd8dc91d77679b4fa (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
        };
    }
}