tor-browser

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

test.js (303B)


      1 function test() {
      2  let instance = wasmEvalText(`
      3    (module
      4      (global $g (mut externref) (ref.null extern))
      5      (func (export "set") (param externref) local.get 0 global.set $g)
      6    )
      7  `).exports;
      8  let obj = { field: null };
      9  instance.set(obj);
     10  for (var v4 = 0; v4 < 10; v4++) {}
     11 }
     12 test();