blob: b5461f2b8c3f0fd778f68c231f1bc7cf3d0e6c47 (
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
|
// Returning {throw:} from onEnterFrame when resuming inside a try block in a
// generator causes control to jump to the catch block.
let g = newGlobal({newCompartment: true});
g.eval(`
function* gen() {
try {
yield 0;
return "fail";
} catch (exc) {
assertEq(exc, "fit");
return "ok";
}
}
`)
let dbg = new Debugger(g);
let hits = 0;
dbg.onEnterFrame = frame => {
assertEq(frame.callee.name, "gen");
if (++hits == 3) {
// First hit is when calling gen();
// second hit is resuming at the implicit initial yield;
// third hit is resuming inside the try block.
return {throw: "fit"};
}
};
let it = g.gen();
let result = it.next();
assertEq(result.done, false);
assertEq(result.value, 0);
result = it.next();
assertEq(result.done, true);
assertEq(result.value, "ok");
|