aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmlformat/data/propertyNames.formatted.qml')
-rw-r--r--tests/auto/qml/qmlformat/data/propertyNames.formatted.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml b/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml
new file mode 100644
index 0000000000..c7d50abb32
--- /dev/null
+++ b/tests/auto/qml/qmlformat/data/propertyNames.formatted.qml
@@ -0,0 +1,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
+ };
+ }
+
+}