aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/holistic/data/jsImports/msdsi10.js
blob: d1b6b4c9d265d6c9628c4a5087fbb139bafb9ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

// This JavaScript file is a single, small, imported script.
// It imports other small scripts which are deeply nested.
// It is imported by another script.

.import "msdsi11.js" as Msdsi11

function testFunc(seedValue) {
    var retn = 0.105;
    retn *= Msdsi11.testFunc(seedValue + retn);
    return retn;
}