aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/propertyVarOwnership.2.qml
blob: 14d4f9fd27ddaca96a2f9c8a37284e8e9af156b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import QtQuick 2.0
import Qt.test 1.0

Item {
    id: testOwnership
    property bool test: false

    property int dummyProperty // Tests for non-interference of other properties
    property var varProperty

    function runTest() {
        if (varProperty != undefined) return;
        varProperty = { a: 10, b: 11 }
        if (varProperty.a != 10) return;

        gc(); // Shouldn't collect

        if (varProperty.a != 10) return;

        test = true;
    } 
}