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 // Binary: cache/js-dbg-32-f1764bf06b29-linux
2 // Flags: --ion-eager
3 //
5 var callStack = new Array();
6 function enterFunc (funcName) {
7 funcName += "()";
8 callStack.push(funcName);
9 }
10 function exitFunc (funcName) {
11 var lastFunc = callStack.pop();
12 funcName += "()";
13 if (lastFunc != funcName)
14 print();
15 }
16 try {
17 test();
18 } catch(exc1) {}
19 function test() {
20 enterFunc ('test');
21 test();
22 }
23 for (var l = 0; l < 50000; l++)
24 exitFunc ('test');