(uri: Uri)
| 174 | } |
| 175 | |
| 176 | private getKey(uri: Uri): string { |
| 177 | switch (uri.scheme) { |
| 178 | case 'untitled': |
| 179 | return uri.scheme; |
| 180 | case 'vscode-notebook-cell': |
| 181 | return `vscode-notebook:${uri.fsPath}`; |
| 182 | default: |
| 183 | return uri.toString(true); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | private startMultiLanguageService(): void { |
| 188 | const didOpenTextDocument = async (document: TextDocument) => { |
no outgoing calls
no test coverage detected