michael@0: function testEnumerate() { michael@0: var p = new ParallelArray([1,2,3,4,5]); michael@0: for (var i in p) michael@0: assertEq(i >= 0 && i < p.length, true); michael@0: } michael@0: michael@0: // FIXME(bug 844882) self-hosted object not array-like, exposes internal properties michael@0: // if (getBuildConfiguration().parallelJS) michael@0: // testEnumerate();