tor-browser

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

onlyjsiter-while-wasm.js (338B)


      1 // |jit-test| skip-if: typeof evalInCooperativeThread === 'undefined'
      2 
      3 try {
      4    evalInCooperativeThread(`
      5        var { f } = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(\`
      6        (module
      7         (func $f (export "f") call $f)
      8        )
      9        \`))).exports;
     10        gczeal(9);
     11        f();
     12    `);
     13 } catch(e) {}