Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| skip-if: helperThreadCount() === 0
// Test off thread module compilation.
load(libdir + "asserts.js");
function offThreadParseAndEvaluate(source) {
offThreadCompileModuleToStencil(source);
let stencil = finishOffThreadStencil();
let m = instantiateModuleStencil(stencil);
moduleLink(m);
return moduleEvaluate(m);
}
offThreadParseAndEvaluate("export let x = 2 * 3;");