Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 // Nested for-of loops on the same slow array get distinct iterators.
2
3 var a = [1, 2, 3];
4 a.slow = true;
5 var s = '';
6 for (var x of a)
7 for (var y of a)
8 s += '' + x + y + ',';
9 assertEq(s, '11,12,13,21,22,23,31,32,33,');