File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export function analyzerStatus(ctx: Ctx): Cmd {
21
21
provideTextDocumentContent ( _uri : vscode . Uri ) : vscode . ProviderResult < string > {
22
22
if ( ! vscode . window . activeTextEditor ) return '' ;
23
23
24
- return ctx . client . sendRequest ( ra . analyzerStatus , null ) ;
24
+ return ctx . client . sendRequest ( ra . analyzerStatus ) ;
25
25
}
26
26
27
27
get onDidChange ( ) : vscode . Event < vscode . Uri > {
@@ -63,7 +63,7 @@ export function memoryUsage(ctx: Ctx): Cmd {
63
63
provideTextDocumentContent ( _uri : vscode . Uri ) : vscode . ProviderResult < string > {
64
64
if ( ! vscode . window . activeTextEditor ) return '' ;
65
65
66
- return ctx . client . sendRequest ( ra . memoryUsage , null ) . then ( ( mem : any ) => {
66
+ return ctx . client . sendRequest ( ra . memoryUsage ) . then ( ( mem : any ) => {
67
67
return 'Per-query memory usage:\n' + mem + '\n(note: database has been cleared)' ;
68
68
} ) ;
69
69
}
@@ -372,7 +372,7 @@ export function expandMacro(ctx: Ctx): Cmd {
372
372
}
373
373
374
374
export function reloadWorkspace ( ctx : Ctx ) : Cmd {
375
- return async ( ) => ctx . client . sendRequest ( ra . reloadWorkspace , null ) ;
375
+ return async ( ) => ctx . client . sendRequest ( ra . reloadWorkspace ) ;
376
376
}
377
377
378
378
export function showReferences ( ctx : Ctx ) : Cmd {
Original file line number Diff line number Diff line change 4
4
5
5
import * as lc from "vscode-languageclient" ;
6
6
7
- export const analyzerStatus = new lc . RequestType < null , string , void > ( "rust-analyzer/analyzerStatus" ) ;
8
- export const memoryUsage = new lc . RequestType < null , string , void > ( "rust-analyzer/memoryUsage" ) ;
7
+ export const analyzerStatus = new lc . RequestType0 < string , void > ( "rust-analyzer/analyzerStatus" ) ;
8
+ export const memoryUsage = new lc . RequestType0 < string , void > ( "rust-analyzer/memoryUsage" ) ;
9
9
10
10
export type Status = "loading" | "ready" | "invalid" | "needsReload" ;
11
11
export interface StatusParams {
12
12
status : Status ;
13
13
}
14
14
export const status = new lc . NotificationType < StatusParams > ( "rust-analyzer/status" ) ;
15
15
16
- export const reloadWorkspace = new lc . RequestType < null , null , void > ( "rust-analyzer/reloadWorkspace" ) ;
16
+ export const reloadWorkspace = new lc . RequestType0 < null , void > ( "rust-analyzer/reloadWorkspace" ) ;
17
17
18
18
export interface SyntaxTreeParams {
19
19
textDocument : lc . TextDocumentIdentifier ;
You can’t perform that action at this time.
0 commit comments