(low, high)
| 427 | let instance = builder.instantiate(); |
| 428 | let memory = new Uint8Array(instance.exports.memory.buffer); |
| 429 | function clearMemory(low, high) { |
| 430 | for (let i = low; i < high; i++) { |
| 431 | memory[i] = 0; |
| 432 | } |
| 433 | } |
| 434 | function assertMemoryBytesZero(low, high) { |
| 435 | for (let i = low; i < high; i++) { |
| 436 | assertEquals(0, memory[i]); |
no outgoing calls
no test coverage detected