summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug-1238610.js
blob: 79fe5b3c2cd3263f4fbff8f0b2e96efbf67f18b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// |jit-test| allow-oom; skip-if: !hasFunction.oomAfterAllocations || helperThreadCount() === 0

lfcode = new Array();
dbg = Debugger();
dbg.onEnterFrame = function() {};
g = newGlobal();
lfcode.push(`
  oomAfterAllocations(100);
  new Number();
  dbg.addDebuggee(g);
`)
file = lfcode.shift();
loadFile(file);
function loadFile(lfVarx) {
  lfGlobal = newGlobal()
  for (lfLocal in this)
      if (!(lfLocal in lfGlobal))
          lfGlobal[lfLocal] = this[lfLocal]
  offThreadCompileToStencil(lfVarx);
  var stencil = lfGlobal.finishOffThreadStencil();
  lfGlobal.evalStencil(stencil);
}