Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 function foo() {
2 bar(1,2,3,4,5,6,7,8,9);
3 }
4
5 function bar() {
6 foo(1,2,3,4,5,6,7,8,9);
7 }
8
9 var caught = false;
10 try {
11 foo();
12 } catch (e) {
13 caught = true;
14 }
15 assertEq(caught, true);