aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/moduleApiCaching.qml
blob: f6ce2058a7ae0058c89eb9a0723bd6a9c2cc1b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

import Qt.test 1.0 as QtTest                                      // module API installed into existing uri
import Qt.test.scriptApi 1.0 as QtTestScriptApi                   // script module API installed into new uri
import Qt.test.qobjectApiParented 1.0 as QtTestParentedQObjectApi // qobject (with parent) module API installed into a new uri

QtObject {
    property int existingUriTest: QtTest.qobjectTestProperty
    property int scriptTest: QtTestScriptApi.scriptTestProperty
    property int qobjectParentedTest: QtTestParentedQObjectApi.qobjectTestProperty
}