()
| 4 | let cachegetInt32Memory = null; |
| 5 | |
| 6 | function getInt32Memory() { |
| 7 | if (cachegetInt32Memory === null || cachegetInt32Memory.buffer !== wasm.wasi.memory.buffer) { |
| 8 | cachegetInt32Memory = new Int32Array(wasm.wasi.memory.buffer); |
| 9 | } |
| 10 | return cachegetInt32Memory; |
| 11 | } |
| 12 | |
| 13 | let cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }); |
| 14 |
no outgoing calls
no test coverage detected