summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1292564.js
blob: f292e1682c665cb2c83da6ad6cc2dfd1ce1c95c3 (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| allow-oom; skip-if: !('oomTest' in this)

oomTest(() => {
    let global = newGlobal({sameZoneAs: this});
    Debugger(global).onDebuggerStatement = function (frame) {
        frame.eval("f")
    }
    global.eval("debugger")
}, false);