aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/holistic/data/jsImports/msdsi1.js
blob: 4907173f08a1c61cc869cbaebebec450b58ad7f5 (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 "msdsi2.js" as Msdsi2

function testFunc(seedValue) {
    var retn = 0.15;
    retn *= Msdsi2.testFunc(seedValue + retn);
    return retn;
}