()
| 816 | } |
| 817 | |
| 818 | private cleanupRTTTerminals() { |
| 819 | this.rttTerminals = this.rttTerminals.filter((t) => { |
| 820 | if (!t.inUse) { |
| 821 | t.dispose(); |
| 822 | return false; |
| 823 | } |
| 824 | return true; |
| 825 | }); |
| 826 | } |
| 827 | |
| 828 | private rttCreateTerninal(e: vscode.DebugSessionCustomEvent, decoder: RTTConsoleDecoderOpts) { |
| 829 | this.createRTTSource(e, decoder.tcpPort, decoder.port).then((src: SocketRTTSource) => { |
no test coverage detected