blob: 77eaaae6de5893e23a22a93ffda460767189c821 [file] [log] [blame]
/*
* Script.prototype.source should be the same object for both the top-level
* script and the script of functions accessed as debuggee values on the global
*/
let g = newGlobal();
let dbg = new Debugger();
let gw = dbg.addDebuggee(g);
let count = 0;
dbg.onDebuggerStatement = function (frame) {
++count;
assertEq(frame.script.source, gw.makeDebuggeeValue(g.f).script.source);
}
g.eval("function f() {}; debugger;");
assertEq(count, 1);