tor-browser

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

module-filename.js (410B)


      1 load(libdir + "asserts.js");
      2 
      3 compileToStencil("", { fileName: "", module: true });
      4 assertThrowsInstanceOf(() => {
      5  compileToStencil("", { fileName: null, module: true });
      6 }, Error);
      7 
      8 if (helperThreadCount() > 0) {
      9  offThreadCompileModuleToStencil("", { fileName: "", module: true });
     10  assertThrowsInstanceOf(() => {
     11    offThreadCompileModuleToStencil("", { fileName: null, module: true });
     12  }, Error);
     13 }