summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/class-03.js
blob: da1a4f434501d07ce52b85e3d8e6c09ed95e1db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// |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;