aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml b/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml
deleted file mode 100644
index 074851a67b..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/selfDeletingBinding.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import Qt.test 1.0
-
-MyQmlContainer {
- property bool triggerDelete: false
-
- children: [
- MyQmlObject {
- // Will trigger deletion during binding evaluation
- stringProperty: {deleteMe(), "Hello"}
- },
-
- MyQmlObject {
- // Will trigger deletion during binding evaluation, but after component creation
- stringProperty: if (triggerDelete) { deleteMe(), "Hello" } else { "World" }
- }
-
- ]
-}