tor-browser

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

bug-1574877.js (346B)


      1 function parseModule(source) {
      2    offThreadCompileModuleToStencil(source);
      3    var stencil = finishOffThreadStencil();
      4    return instantiateModuleStencil(stencil);
      5 }
      6 function loadFile(lfVarx) {
      7  oomTest(function() {
      8      parseModule(lfVarx);
      9  });
     10 }
     11 loadFile(`
     12  expect = new class prototype extends Object {
     13    a43 = function () {}
     14  }
     15 `);