tor-browser

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

bug1848244.js (176B)


      1 // Constant-folding should replace the ternary expression with one that is
      2 // equally valid with optional chaining in the AST
      3 function main() {
      4    (0 ? 0 : -1n)?.g;
      5 }
      6 main();