aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/jsLibrary.qml
blob: 3878b246167ec3e46f1b2dabb09cd63cf487b2ae (plain)
1
2
3
4
5
6
7
8
import QtQml
import JsLibrary as JLib
import "JsLibrary/HelperLibrary.js" as HelperLib

QtObject {
    property string text1: JLib.HelperLibrary.foo()
    property string text2: HelperLib.foo()
}