blob: d404428c0ae98eb15dd6aacf8f8d9b2f960901e5 (
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
|
g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("(" + function() {
let calledTimes = 0;
Debugger(parent).onExceptionUnwind = function(frame) {
switch (calledTimes++) {
case 0:
assertEq(frame.older.type, "global");
break;
case 1:
// Force toplevel to return placidly so that we can tell assertions
// from the throwing in the test.
assertEq(frame.older, null);
return { return: undefined };
default:
assertEq(false, true);
}
}
} + ")()");
var handler = {
get() {
r;
}
};
new(new Proxy(function() {}, handler));
|