Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1 revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 function arityMismatchMissingArg(arg)
2 {
3 for (var a = 0, i = 1; i < 10000; i *= 2) {
4 a += i;
5 }
6 return a;
7 }
8
9 function arityMismatchExtraArg()
10 {
11 return arityMismatchMissingArg(1, 2);
12 }
13 assertEq(arityMismatchExtraArg(), 16383);