blob: ecbd0ddf2c4b3d1adc0d97ce23587f49c023c5e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Bug 1501666: assertions about the script's step mode count must take
// suspended calls into account. This should not crash.
var g = newGlobal({ newCompartment: true });
g.eval(`
async function f(y) {
await true;
await true;
};
`);
g.f();
g.f();
var dbg = Debugger(g);
dbg.onEnterFrame = function(frame) {
frame.onStep = function() {}
}
|