summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/holistic/data/jsImports/msdsi7.js
blob: 4aec2604c79e0d331efe73cb86e7316d1ddd81c6 (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 "msdsi8.js" as Msdsi8

function testFunc(seedValue) {
    var retn = 0.75;
    retn *= Msdsi8.testFunc(seedValue + retn);
    return retn;
}