()
| 30 | } |
| 31 | |
| 32 | public initCommands(): string[] { |
| 33 | const gdbport = this.ports[createPortName(this.args.targetProcessor)]; |
| 34 | |
| 35 | return [ |
| 36 | `target-select extended-remote localhost:${gdbport}` |
| 37 | ]; |
| 38 | } |
| 39 | |
| 40 | public launchCommands(): string[] { |
| 41 | const commands = []; |
nothing calls this directly
no test coverage detected