tor-browser

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

stencil-oom.js (172B)


      1 const sa = `
      2 function f(x, y) { return x + y }
      3 let a = 10, b = 20;
      4 f(a, b);
      5 `;
      6 
      7 oomTest(() => {
      8    let stencil = compileToStencilXDR(sa);
      9    evalStencilXDR(stencil);
     10 });