summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/breakpoint-13.js
blob: d839195ce4ec3aa193d0f98942968255d45f6225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Breakpoints should be hit on scripts gotten not via Debugger.Frame.

var g = newGlobal({newCompartment: true});
g.eval("function f(x) { return x + 1; }");
// Warm up so f gets OSRed into the jits.
g.eval("for (var i = 0; i < 10000; i++) f(i);");
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);
var fw = gw.getOwnPropertyDescriptor("f").value;
var hits = 0;
fw.script.setBreakpoint(0, { hit: function(frame) { hits++; } });
g.eval("f(42);");
assertEq(hits, 1);