summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/PragmaModuleBm.qml
blob: 6b4890cd752220852c4cd7d90f48822f5421aae1 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

import "pragmaModuleBm.js" as PragmaModuleBmJs

Item {
    id: testQtObject

    // value = 20 + (Qt.test.Enum3 == 2) + 9 + (nbr times shared testFunc has been called previously = 0) + 9 + (nbr times shared testFunc has been called previously = 1)
    property int importedScriptFunctionValue: PragmaModuleBmJs.testFuncThree(20)
}