summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi2.js
blob: ae267be83133877bc07de1387dfdad4d6dca0ab0 (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 "msdsi3.js" as Msdsi3

function testFunc(seedValue) {
    var retn = 0.25;
    retn *= Msdsi3.testFunc(seedValue + retn);
    return retn;
}