aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/thisObject.qml
blob: c93d0302cf2be5e36426d860f5af26aa55b2b341 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml 2.0
QtObject {
    property int value: 1
    property QtObject subObject: QtObject {
        property int value: 2
        property int test: {
            return this.value;
        }
    }
}