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

import "testScriptImport.js" as TestScriptImport
import "testModuleImport.js" as TestModuleImport

QtObject {
    id: testQtObject

    property string importedScriptStringValue: TestScriptImport.greetingText
    property int importedScriptFunctionValue: TestScriptImport.randomInteger(1, 20)

    property int importedModuleAttachedPropertyValue: TestModuleImport.importedAttachedPropertyValue(testQtObject)
    property int importedModuleEnumValue: TestModuleImport.importedEnumValue
}