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