MCPcopy Index your code
hub / github.com/REditorSupport/vscode-R / checkClient

Method checkClient

src/languageService.ts:164–174  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

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) {

Callers 1

didOpenTextDocumentMethod · 0.95

Calls 3

hasMethod · 0.80
addMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected