summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1191499.js
blob: 07086c4cb3c97b717adbd18464b4b890472d26f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

setJitCompilerOption('ion.warmup.trigger', 2);
setJitCompilerOption('offthread-compilation.enable', 0);
var g = newGlobal();
var dbg2 = new Debugger;
g.toggle = function toggle(x, d) {
  if (d) {
    dbg2.addDebuggee(g);
    dbg2.getNewestFrame().environment.getVariable("x");
  }
};
g.eval("" + function f(x, d) { toggle(++arguments, d); });
g.eval("(" + function test() {
  for (var i = 0; i < 30; i++)
    f(42, false);
  f(42, true);
} + ")();");