blob: 5a04a32aea452926769a62553690c573b246206b (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Test exception stack behavior when reusing completion values as resumption
// values.
load(libdir + "asserts.js");
var g = newGlobal({newCompartment: true});
g.eval(`
function foo() {
bar();
}
function bar() {
debugger;
}
function baz() {
throw new Error();
}
`);
var dbg = Debugger(g);
dbg.onDebuggerStatement = frame => {
return frame.eval("baz()");
};
let popHits = 0;
dbg.onEnterFrame = frame => {
frame.onPop = completion => {
popHits++;
// Resumption values ignore any 'stack' property, and the script location of
// the place where the hook was called will be used when throwing.
if (popHits <= 2) {
assertEq(completion.stack.functionDisplayName, "baz");
} else {
assertEq(completion.stack.functionDisplayName, "bar");
}
};
};
try {
g.eval("foo()");
} catch (e) {}
assertEq(popHits, 5);
|