@param {WebAssembly.Module=} module
(instance, module)
| 495 | // performing other necessary setup |
| 496 | /** @param {WebAssembly.Module=} module*/ |
| 497 | function receiveInstance(instance, module) { |
| 498 | wasmExports = instance.exports; |
| 499 | |
| 500 | assignWasmExports(wasmExports); |
| 501 | |
| 502 | return wasmExports; |
| 503 | } |
| 504 | |
| 505 | // Prefer streaming instantiation if available. |
| 506 | function receiveInstantiationResult(result) { |
no test coverage detected