blob: 0d9832725600c532d315ffdd1b4e1a0e1f8c6f80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| exitstatus: 3; skip-if: !('oomAfterAllocations' in this)
var g = newGlobal();
var dbg = new Debugger(g);
dbg.onDebuggerStatement = function(frame) {
oomAfterAllocations(5);
// OOMs here, and possibly again in the error reporter when trying to
// report the OOM, so the shell just exits with code 3.
frame.older.eval("escaped = function() { return y }");
}
g.eval("function h() { debugger }");
g.eval("(function () { var y = {p:42}; h(); yield })().next();");
|