(low, high)
| 432 | } |
| 433 | } |
| 434 | function assertMemoryBytesZero(low, high) { |
| 435 | for (let i = low; i < high; i++) { |
| 436 | assertEquals(0, memory[i]); |
| 437 | } |
| 438 | } |
| 439 | function checkMemory(offset, bytes) { |
| 440 | let slop = 64; |
| 441 | assertMemoryBytesZero(Math.max(0, offset - slop), offset); |
no test coverage detected