Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 function first(a, b) {
2 return second(a, b);
3 }
5 function second(a, b) {
6 return third(a, b, a + b);
7 }
9 function third(a, b, c) {
10 return a + b + c;
11 }
13 function foo(x) {
14 var a = 0;
15 for (var i = 0; i < 100; i++)
16 a += first(x, i);
17 return a;
18 }
20 var q = foo(10);
21 assertEq(q, 11900);