()
| 102 | // by a 'stepi' which doesn't really do a stepi but can emulate a break due to a step that |
| 103 | // gdb expects |
| 104 | public launchCommands(): string[] { |
| 105 | const commands = [ |
| 106 | ...genDownloadCommands(this.args, ['interpreter-exec console "monitor reset halt"']), |
| 107 | 'interpreter-exec console "monitor reset halt"' |
| 108 | ]; |
| 109 | return commands; |
| 110 | } |
| 111 | |
| 112 | public attachCommands(): string[] { |
| 113 | const commands = [ |
nothing calls this directly
no test coverage detected