aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/interception/qmldir/urlInterceptor.qml
blob: 22a09e5522bbc9a9d7f1df09b36f3df1435ada1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQml 2.0
import "."
import "intercepted.js" as Script

QtObject {
    property url filePath: "doesNotExist.file"
    property url resolvedUrl: Qt.resolvedUrl("doesNotExist.file");
    property url absoluteUrl: Qt.resolvedUrl("file:///doesNotExist.file");
    property string childString: child.myStr
    property string scriptString: Script.myStr
    property Intercepted child: Intercepted {}
}