summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi14.js
blob: 28e73fea6729417fc8c878eafb36b8b23eb9923a (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 "msdsi15.js" as Msdsi15

function testFunc(seedValue) {
    var retn = 0.145;
    retn *= Msdsi15.testFunc(seedValue + retn);
    return retn;
}