(languageClient: LanguageClient)
| 274 | } |
| 275 | |
| 276 | public override onLanguageClientSet(languageClient: LanguageClient): void { |
| 277 | this.handlers = [ |
| 278 | languageClient.onRequest( |
| 279 | ShowChoicePromptRequestType, |
| 280 | (promptDetails) => showChoicePrompt(promptDetails), |
| 281 | ), |
| 282 | |
| 283 | languageClient.onRequest( |
| 284 | ShowInputPromptRequestType, |
| 285 | (promptDetails) => showInputPrompt(promptDetails), |
| 286 | ), |
| 287 | ]; |
| 288 | } |
| 289 | } |
no test coverage detected