tor-browser

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

bug1904899.js (221B)


      1 // |jit-test| --gc-zeal=14,162;
      2 
      3 a = function() {
      4    function b(c) {
      5      try {
      6        a();
      7      } catch {
      8      }
      9    }
     10    return b;
     11 }()
     12 
     13 d = wasmTextToBinary("(type $x (struct))(func $h)");
     14 a();
     15 wasmDumpIon(d, d);