(name)
| 537 | */ |
| 538 | async function initWasm(bin) { |
| 539 | const eep = (name) => () => { |
| 540 | throw new Error( |
| 541 | `Internal error: unexpected call to "${name}" during Wasm verification`, |
| 542 | ); |
| 543 | }; |
| 544 | |
| 545 | let stderr = ''; |
| 546 | const wasmModule = await WebAssembly.compile(bin); |