blob: ab2a979d5767ca8c4c61bc58fec5b50367bdf2f4 [file] [log] [blame]
// script.getChildScripts() works correctly during the newScript hook.
// (A bug had it including the script for the calling function.)
var g = newGlobal();
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);