()
| 139 | } |
| 140 | |
| 141 | public serverExecutable(): string { |
| 142 | if (this.args.serverpath) { |
| 143 | return this.args.serverpath; |
| 144 | } else { |
| 145 | return resolveCubePath([STLinkServerController.getSTMCubeIdeDir(), 'plugins'], GDB_REGEX, 'tools/bin', SERVER_EXECUTABLE_NAME); |
| 146 | } |
| 147 | } |
| 148 | public allocateRTTPorts(): Promise<void> { |
| 149 | return Promise.resolve(); |
| 150 | } |
nothing calls this directly
no test coverage detected