aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/holistic/data/jsImports/msdsi.js
blob: 9fe68fc02a4d2f919edb2c3854f7a47eba08ad73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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.

.import "msdsi1.js" as Msdsi1

function testFunc(seedValue) {
    var retn = 0.5;
    retn *= Msdsi1.testFunc(seedValue + retn);
    return retn;
}