tor-browser

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

using-in-module.js (316B)


      1 // |jit-test| skip-if: !getBuildConfiguration("explicit-resource-management"); --enable-explicit-resource-management
      2 
      3 globalThis.called = false;
      4 
      5 const m = parseModule(`
      6 using x = {
      7  [Symbol.dispose]() {
      8    globalThis.called = true;
      9  }
     10 }
     11 `);
     12 
     13 moduleLink(m);
     14 moduleEvaluate(m);
     15 
     16 assertEq(globalThis.called, true);