Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 // for-of visits inherited properties in an array full of holes.
2
3 Object.prototype[1] = "O";
4 Array.prototype[2] = "A";
5 assertEq([x for (x of Array(4))].join(","), ",O,A,");