Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| error: TypeError
let g = newGlobal();
let dbg = Debugger(g);
let forceException = g.eval(`
(class extends class {} {
// Calling this will return a primitive immediately.
constructor() {
debugger;
return {};
}
})
`);
dbg.onDebuggerStatement = function() {
return {
// Force the return of an illegal value.
return: 1
}
}
new forceException;