We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc9961 commit ff759e7Copy full SHA for ff759e7
editors/code/src/lsp_ext.ts
@@ -39,9 +39,11 @@ export const openServerLogs = new lc.NotificationType0("rust-analyzer/openServer
39
export const relatedTests = new lc.RequestType<lc.TextDocumentPositionParams, TestInfo[], void>(
40
"rust-analyzer/relatedTests",
41
);
42
-export const selectedTest = new lc.RequestType<lc.TextDocumentPositionParams, TestInfo | null, void>(
43
- "rust-analyzer/selectedTest",
44
-);
+export const selectedTest = new lc.RequestType<
+ lc.TextDocumentPositionParams,
+ TestInfo | null,
45
+ void
46
+>("rust-analyzer/selectedTest");
47
export const reloadWorkspace = new lc.RequestType0<null, void>("rust-analyzer/reloadWorkspace");
48
export const rebuildProcMacros = new lc.RequestType0<null, void>("rust-analyzer/rebuildProcMacros");
49
0 commit comments