summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-getOffsetsCoverage-03.js
blob: 8bbafb983882ccdcaa3a41380526c7cb9a176e67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// |jit-test| error: Error: can't start debugging: a debuggee script is on the stack

var g = newGlobal({newCompartment: true});
var dbg = Debugger(g);
function loop(i) {
  var n = 0;
  for (n = 0; n < i; n++)
    debugger;
}
g.eval(loop.toString());

var countDown = 20;
dbg.onDebuggerStatement = function (f) {
  // Should throw an error.
  if (countDown > 0 && --countDown == 0) {
    dbg.collectCoverageInfo = !dbg.collectCoverageInfo;
  }
};

dbg.collectCoverageInfo = false;
g.eval("loop("+ (2 * countDown) +");");