blob: 65665ae173b308df768b5f9ed5cb570f818a0827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
var fscript = null;
dbg.onNewScript = function(script) {
dbg.onNewScript = undefined;
fscript = script.getChildScripts()[0];
}
g.eval("function f(x) { arguments[0] = 3; return x }");
assertEq(fscript !== null, true);
fscript.setBreakpoint(0, {hit:function(frame) {
assertEq(frame.eval('x').return, 1);
assertEq(frame.arguments[0], 1);
return {return:42};
}});
assertEq(g.f(1), 42);
|