Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 // vim: set ts=8 sts=4 et sw=4 tw=99:
2 function f([a, b, c, d]) {
3 a = b;
4 return function () { return a + b + c + d; };
5 }
6
7 var F = f(["a", "b", "c", "d"]);
8 assertEq(F(), "bbcd");