Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 load(libdir + "parallelarray-helpers.js");
3 try {
4 var spew = getSelfHostedValue("ParallelSpew");
5 } catch (e) {}
6 if (getBuildConfiguration().parallelJS && spew) {
7 assertParallelExecSucceeds(
8 function (m) { Array.buildPar(minItemsTestingThreshold,
9 function (i) { spew(i + ""); }); },
10 function (r) { return true; });
11 }