MCPcopy Create free account
hub / github.com/REditorSupport/vscode-R / requestHelpContent

Method requestHelpContent

src/liveShare/index.ts:328–335  ·  view source on GitHub ↗
(file: string)

Source from the content-addressed store, hash-verified

326 }
327
328 public async requestHelpContent(file: string): Promise<HelpFile | undefined> {
329 const content: string | null | unknown = await liveShareRequest(Callback.GetHelpFileContent, file);
330 if (content) {
331 return content as HelpFile;
332 } else {
333 console.error('[GuestService] failed to retrieve help content from host');
334 }
335 }
336
337}
338

Callers 1

getHelpFileForPathMethod · 0.80

Calls 1

liveShareRequestFunction · 0.90

Tested by

no test coverage detected