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 // |jit-test| error: ReferenceError
3 var lfcode = new Array();
4 lfcode.push("3");
5 lfcode.push("enableSPSProfilingAssertions(false);foo();");
6 while (true) {
7 var file = lfcode.shift(); if (file == undefined) { break; }
8 loadFile(file)
9 }
10 function loadFile(lfVarx) {
11 if (lfVarx.substr(-3) != ".js" && lfVarx.length != 1) {
12 switch (lfRunTypeId) {
13 default: function newFunc(x) { new Function(x)(); }; newFunc(lfVarx); break;
14 }
15 } else if (!isNaN(lfVarx)) {
16 lfRunTypeId = parseInt(lfVarx);
17 }
18 }