blob: 6d548d8b9241b3b1475281e75a548e10e42dc3c2 (
plain)
1
2
3
4
5
6
7
8
9
|
// |jit-test| allow-oom; skip-if: !('oomAfterAllocations' in this)
var g = newGlobal();
g.debuggeeGlobal = this;
g.eval("(" + function() {
oomAfterAllocations(100);
var dbg = Debugger(debuggeeGlobal);
dbg.onEnterFrame = function(frame) {}
} + ")()");
|