()
| 73 | } |
| 74 | |
| 75 | static getInstance(): IdeClient { |
| 76 | if (!IdeClient.instance) { |
| 77 | IdeClient.instance = new IdeClient(); |
| 78 | } |
| 79 | return IdeClient.instance; |
| 80 | } |
| 81 | |
| 82 | async connect(): Promise<void> { |
| 83 | if (!this.currentIde || !this.currentIdeDisplayName) { |
no outgoing calls
no test coverage detected