blob: d50d53e58318f771cc837ccc350066690dc163a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Script.prototype.source should be an object. Moreover, it should be the
* same object for each child script within the same debugger.
*/
let g = newGlobal({newCompartment: true});
let dbg = new Debugger(g);
let count = 0;
dbg.onNewScript = function (script) {
assertEq(typeof script.source, "object");
function traverse(script) {
++count;
script.getChildScripts().forEach(function (child) {
assertEq(child.source, script.source);
traverse(child);
});
}
traverse(script);
}
g.eval("2 * 3");
g.eval("function f() {}");
g.eval("function f() { function g() {} }");
g.eval("eval('2 * 3')");
g.eval("new Function('2 * 3')");
assertEq(count, 10);
|