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