summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi4.js
blob: 75d48820f4a6d4ebde7538f124c7b2c0fd66880a (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 "msdsi5.js" as Msdsi5

function testFunc(seedValue) {
    var retn = 0.45;
    retn *= Msdsi5.testFunc(seedValue + retn);
    return retn;
}