Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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,");