blob: b750177d878657802c253106e3b41263af15e028 (
plain)
1
2
3
4
5
6
7
8
9
|
// |jit-test| --fuzzing-safe
if (!('oomTest' in this))
quit();
var g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("new Debugger(parent).onExceptionUnwind = function() {}");
oomTest(() => l, (true));
|