blob: 5125359292686c9d73e146c08e468a4d0b15bb09 (
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
42
43
44
45
46
47
48
49
|
// Changing onStep while the function is dead is allowed.
load(libdir + "asserts.js");
const g = newGlobal({ newCompartment: true });
const dbg = new Debugger(g);
let steps = new Set();
dbg.onDebuggerStatement = function(frame) {
// Setting 'onStep' while alive is allowed.
steps.add("debugger 1");
assertEq(frame.onStack, true);
frame.onStep = function() {
steps.add("onstep 1");
};
dbg.onDebuggerStatement = function() {
// Clear the 'onStep' while dead.
steps.add("debugger 2");
assertEq(frame.onStack, false);
// Clearing 'onStep' while dead is allowed.
frame.onStep = undefined;
// Setting 'onStep' while dead is allowed.
frame.onStep = function() {
steps.add("onstep 2");
};
};
};
g.eval(
`
function myGen() {
debugger;
print("make sure we have a place to step to inside the frame");
}
const g = myGen();
debugger;
`
);
assertDeepEq(Array.from(steps), [
"debugger 1",
"onstep 1",
"debugger 2",
]);
|