Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 load(libdir + "parallelarray-helpers.js");
3 if (getBuildConfiguration().parallelJS) {
4 assertParallelExecSucceeds(
5 function (m) {
6 return Array.buildPar(minItemsTestingThreshold,
7 function (i) { return arguments[0]; },
8 m);
9 },
10 function (r) {
11 assertStructuralEq(Array.build(minItemsTestingThreshold,
12 function (i) { return arguments[0]; }),
13 r);
14 });
15 }