tor-browser

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

bug1932651.js (371B)


      1 // |jit-test| skip-if: !wasmDebuggingEnabled()
      2 
      3 newGlobal({sameZoneAs: this}).Debugger({});
      4 const binary = wasmTextToBinary(`(module
      5  (func (export "") (result anyref i32)
      6    ref.null any
      7    ref.as_non_null
      8    ref.func 0
      9    ref.null any
     10    i32.const 0
     11    return
     12    i32.const 0
     13    i32.const 0
     14    i32.and
     15    unreachable
     16  )
     17 )
     18 `);
     19 new WebAssembly.Module(binary);