summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi13.js
blob: beb95a6d37e64d01e56f7bb11b6be62041f961a2 (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 "msdsi14.js" as Msdsi14

function testFunc(seedValue) {
    var retn = 0.135;
    retn *= Msdsi14.testFunc(seedValue + retn);
    return retn;
}