Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // for-of does not skip Array holes. The value at a hole is undefined.
2
3 var a = [0, , 2, 3];
4 var log = [];
5 for (var x of a) {
6 assertEq(x, a[log.length]);
7 log.push(x);
8 }
9 assertEq(log[1], undefined);
10 assertEq(log.join(), "0,,2,3");