Gets whether the memoryReference exists in this store
(memoryReference: string)
| 1674 | |
| 1675 | /** Gets whether the memoryReference exists in this store */ |
| 1676 | public hasMemory(memoryReference: string) { |
| 1677 | return isMemoryReadable(this.vars.get(Number(memoryReference))); |
| 1678 | } |
| 1679 | |
| 1680 | /** Writes memory from the reference at the offset and count */ |
| 1681 | public async readMemory(memoryReference: string, offset: number, count: number) { |
no test coverage detected