blob: 7e4b246e0766787066ca228663cf102666415008 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// |jit-test| skip-if: !(getBuildConfiguration()['has-gczeal']) || helperThreadCount() === 0
setGCCallback({
action: "majorGC",
});
schedulezone(this)
gcslice(3)
var lfGlobal = newGlobal();
lfGlobal.offThreadCompileToStencil("");
var stencil = lfGlobal.finishOffThreadStencil();
lfGlobal.evalStencil(stencil);
|