summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi.js
blob: 6977f0f7b7b9bd10fdf5352a7f9a0711faed8d27 (plain)
1
2
3
4
5
6
7
8
9
10
// 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;
}