summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1847360.js
blob: 89d1d73afe15f23956c9de5f579d81acca35c1ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
try {
    g = newGlobal({ newCompartment: true });
    g.z = this;
    g.eval(
        "(" +
        function () {
            Debugger(z).onExceptionUnwind = function (y) {
                y.eval("f=0");
            };
        } +
        ")()"
    );
    (function f() {
        x;
    })();
} catch (e) {
    assertEq(e instanceof ReferenceError, true);
}