(name: string)
| 162 | |
| 163 | |
| 164 | private checkClient(name: string): boolean { |
| 165 | if (this.initSet.has(name)) { |
| 166 | return true; |
| 167 | } |
| 168 | const client = this.clients.get(name); |
| 169 | if (client && client.needsStop()) { |
| 170 | return true; |
| 171 | } |
| 172 | this.initSet.add(name); |
| 173 | return false; |
| 174 | } |
| 175 | |
| 176 | private getKey(uri: Uri): string { |
| 177 | switch (uri.scheme) { |
no test coverage detected