Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // arrow functions may have empty arguments
2
3 var f = () => 'x';
4 assertEq(f.length, 0);
5 assertEq(f(), 'x');
6 assertEq(f(0, 1, 2, 3, 4, 5, 6, 7, 8, 9), 'x');