()
| 307 | this.session = obj; |
| 308 | } |
| 309 | public debuggerLaunchCompleted(): void { |
| 310 | const hasRtt = this.rttHelper.emitConfigures(this.args.rttConfig, this); |
| 311 | if (this.args.ctiOpenOCDConfig?.enabled) { |
| 312 | this.ctiStopResume(CTIAction.init); |
| 313 | } |
| 314 | if (hasRtt) { |
| 315 | this.startRttMonitor(); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | // This should not be called until the server is ready and accepting connections. Proper time to call is to have |
| 320 | // established an RTT TCP port already |
nothing calls this directly
no test coverage detected