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