blob: 799ccf36e0595a066a5391f84805f3c37bb9b43b (
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
|
/*
* Debugger.Source.prototype.text should return a string. Moreover, it
* should be the same string for each child script sharing that
* Debugger.Source.
*/
let g = newGlobal({newCompartment: true});
let dbg = new Debugger(g);
var count = 0;
dbg.onNewScript = function (script) {
var text = script.source.text;
assertEq(typeof text, "string");
function traverse(script) {
++count;
script.getChildScripts().forEach(function (script) {
assertEq(script.source.text, text);
traverse(script);
});
};
traverse(script);
}
g.eval("2 * 3");
g.eval("function f() {}");
g.eval("function f() { function g() {} }");
assertEq(count, 6);
|