summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-onNativeCall-04.js
blob: d3ee1377bf0632dc4aa42daeace2db23b04f6dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Test that onNativeCall behaves correctly when a debugger eval might enter the
// JIT via OSR.

var g = newGlobal({newCompartment: true});
var dbg = Debugger(g);
var gdbg = dbg.addDebuggee(g);

g.eval(`
const x = [];
function f() {
  for (let i = 0; i < 5; i++) {
    x.push(i);
  }
}
`);

let numCalls = 0;
dbg.onNativeCall = callee => { assertEq(callee.name, "push"); numCalls++; };

var dbg2 = Debugger(g);

for (let i = 0; i < 5; i++) {
  numCalls = 0;
  gdbg.executeInGlobal(`f()`);
  assertEq(numCalls, 5);
}