aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/jsimportfail/testModuleImport.js
blob: 69bc1c988730fa79fb5a3cae8918582b5e72146d (plain)
1
2
3
4
5
6
7
8
.import Qt.test 1.0 as JsQtTest         // test that we can import elements from .js files

function importedAttachedPropertyValue(obj) {
    return obj.JsQtTest.MyQmlObject.value; // attached property, value = 19.
}

var importedEnumValue = JsQtTest.MyQmlObject.EnumValue3 // the actual value of this enum value is "2"