tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

off-thread-inner-fcn.js (329B)


      1 // |jit-test| skip-if: helperThreadCount() === 0
      2 
      3 offThreadCompileToStencil(`function outer() {
      4  // enough inner functions to make JS::Vector realloc
      5   let inner1 = () => {};
      6   let inner2 = () => {};
      7   let inner3 = () => {};
      8   let inner4 = () => {};
      9   let inner5 = () => {};
     10 } `);
     11 const stencil = finishOffThreadStencil();