Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 // for-of can be used in array comprehensions.
2
3 assertEq([x*x for (x of [1, 2, 3])].join(), "1,4,9");