Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // for-of works on cross-compartment wrappers of Arrays.
2
3 var g = newGlobal();
4 var s = '';
5 for (var x of g.Array(1, 1, 2, 3, 5))
6 s += x;
7 assertEq(s, '11235');