tor-browser

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

regress-1954042.js (276B)


      1 // Check OOM handling during compilation of struct.new
      2 function testNewStruct() {
      3  let { newStruct } = wasmEvalText(`
      4    (module
      5    (type $s (sub (struct)))
      6    (func (export "newStruct") (result anyref)
      7        struct.new $s)
      8    )
      9  `).exports;
     10 }
     11 oomTest(testNewStruct);