summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi8.js
blob: 68e5af26bfbbb3912f477e4c231af049e0b05157 (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 "msdsi9.js" as Msdsi9

function testFunc(seedValue) {
    var retn = 0.85;
    retn *= Msdsi9.testFunc(seedValue + retn);
    return retn;
}