aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/moduleApiCaching.qml
blob: 9cee8c3065c03d827f8ea3036da1343558149a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.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
}