aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/jsimport/testJsImport.qml
blob: ae43e9021002f8d2678a5e7f3fa5e7732960ead3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

import com.nokia.JsModule 1.0
import com.nokia.JsModule 1.0 as RenamedModule
import "testJsModuleImport.js" as TestJsModuleImport

QtObject {
    id: testQtObject

    property string importedScriptStringValue: ScriptAPI.greeting();
    property string renamedScriptStringValue: RenamedModule.ScriptAPI.greeting();
    property string reimportedScriptStringValue: TestJsModuleImport.importedValue();
}