blob: 8613e737bfe1847c2ee1f505ab0dc194e12365bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// |jit-test| error: ReferenceError
let g = newGlobal();
let dbg = Debugger(g);
let forceException = g.eval(`
(class extends class {} {
// Calling this will return a primitive immediately.
constructor() { return {}; }
})
`);
dbg.onEnterFrame = function() {
return {
// Force the return undefined, which will throw for returning
// while |this| is still undefined.
return: undefined
}
}
print("break here");
new forceException;
|