Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // Nested for-of loops on the same array get distinct iterators.
2
3 var a = [1, 2, 3];
4 var s = '';
5 for (var x of a)
6 for (var y of a)
7 s += '' + x + y + ',';
8 assertEq(s, '11,12,13,21,22,23,31,32,33,');