We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e08e6 commit 292dc86Copy full SHA for 292dc86
editors/code/src/lsp_ext.ts
@@ -79,9 +79,11 @@ export interface ExpandedInlineMacro {
79
name: string;
80
expansion: SnippetTextEdit[];
81
}
82
-export const expandMacroInline = new lc.RequestType<ExpandMacroParams, ExpandedInlineMacro | null, void>(
83
- "rust-analyzer/expandMacroInline"
84
-);
+export const expandMacroInline = new lc.RequestType<
+ ExpandMacroParams,
+ ExpandedInlineMacro | null,
85
+ void
86
+>("rust-analyzer/expandMacroInline");
87
88
export const relatedTests = new lc.RequestType<lc.TextDocumentPositionParams, TestInfo[], void>(
89
"rust-analyzer/relatedTests"
0 commit comments