(type: string, str: string)
| 203 | } |
| 204 | |
| 205 | private handleMsg(type: string, str: string) { |
| 206 | this.gdbSession.handleMsg(type, str); |
| 207 | } |
| 208 | |
| 209 | protected isRangeInValidMem(startAddress: number, endAddress: number): boolean { |
| 210 | for (const region of this.gdbSession.symbolTable.memoryRegions) { |
no outgoing calls
no test coverage detected