summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi1.js
blob: 260ae4e66a54ef7b80a1299faf695e39ba55d673 (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 "msdsi2.js" as Msdsi2

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