blob: 4e4361abe83f525a5f6050e0cfe1a469ae5f6a3d (
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
|
// Test that Ion->Baseline in-place debug mode bailout can recover the iterator
// from the snapshot in a for-of loop.
g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("Debugger(parent).onExceptionUnwind=(function() {})");
function* throwInNext() {
yield 1;
yield 2;
yield 3;
throw 42;
}
function f() {
for (var o of throwInNext());
}
var log = "";
try {
f();
} catch (e) {
log += e;
}
assertEq(log, "42");
|