summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-getChildScripts-04.js
blob: fc4724713765ae135f3ab8eb543f916d752d9d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// script.getChildScripts() works correctly during the newScript hook.
// (A bug had it including the script for the calling function.)

var g = newGlobal({newCompartment: true});
g.eval("function h(a) { eval(a); }");

var dbg = Debugger(g);
var arr, kscript;
dbg.onNewScript = function (script) { arr = script.getChildScripts(); };
dbg.onDebuggerStatement = function (frame) { kscript = frame.callee.script; };

g.h("function k(a) { debugger; return a + 1; } k(-1);");
assertEq(kscript instanceof Debugger.Script, true);
assertEq(arr.length, 1);
assertEq(arr[0], kscript);