(context: vscode.ExtensionContext)
| 611 | } |
| 612 | |
| 613 | static async getInstance(context: vscode.ExtensionContext) { |
| 614 | if (this._instance) { |
| 615 | return this._instance |
| 616 | } |
| 617 | |
| 618 | this._instance = new ContextProxy(context) |
| 619 | await this._instance.initialize() |
| 620 | |
| 621 | return this._instance |
| 622 | } |
| 623 | } |
no test coverage detected