()
| 165 | } |
| 166 | |
| 167 | public swoAndRTTCommands(): string[] { |
| 168 | const commands = []; |
| 169 | if (this.args.swoConfig.enabled) { |
| 170 | const swocommands = this.SWOConfigurationCommands(); |
| 171 | commands.push(...swocommands); |
| 172 | } |
| 173 | return commands.concat(this.rttCommands()); |
| 174 | } |
| 175 | |
| 176 | private SWOConfigurationCommands(): string[] { |
| 177 | const commands: string[] = []; |
nothing calls this directly
no test coverage detected