aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/importJs.6.qml
blob: e5f2e13f1077fd83d686eafc6a64a1bd5cb8aba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.qtproject.VersionedOnlyJsModule 9.0
import org.qtproject.VersionedOnlyJsModule 9.0
import QtQuick 2.0

Item {
    property bool test: false

    Component.onCompleted: {
        test = ((SomeAPI.greeting() == "Hey hey hey") &&
                (SomeAPI.major == 9) &&
                (SomeAPI.minor == 0))
    }
}