blob: 66f390bd4ef55b4bd2917a92ff3907287ca244a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// |jit-test| error: TypeError
let g = newGlobal();
let dbg = Debugger(g);
let forceException = g.eval(`
(class extends class {} {
// Calling this will throw for using |this| uninitialized.
constructor() { }
})
`);
dbg.onExceptionUnwind = function() {
return {
// Force the return of an illegal value.
return: 1
}
}
new forceException;
|