mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-17 18:57:04 +00:00
Fixing naming from graph to list
This commit is contained in:
parent
e2535926e9
commit
1b8288ff96
7 changed files with 52 additions and 48 deletions
|
|
@ -70,9 +70,9 @@ export const viewItemTree = new lc.RequestType<ViewItemTreeParams, string, void>
|
|||
|
||||
export type AnalyzerStatusParams = { textDocument?: lc.TextDocumentIdentifier };
|
||||
|
||||
export interface FetchDependencyGraphParams {}
|
||||
export interface FetchDependencyListParams {}
|
||||
|
||||
export interface FetchDependencyGraphResult {
|
||||
export interface FetchDependencyListResult {
|
||||
crates: {
|
||||
name: string;
|
||||
version: string;
|
||||
|
|
@ -80,11 +80,11 @@ export interface FetchDependencyGraphResult {
|
|||
}[];
|
||||
}
|
||||
|
||||
export const fetchDependencyGraph = new lc.RequestType<
|
||||
FetchDependencyGraphParams,
|
||||
FetchDependencyGraphResult,
|
||||
export const fetchDependencyList = new lc.RequestType<
|
||||
FetchDependencyListParams,
|
||||
FetchDependencyListResult,
|
||||
void
|
||||
>("rust-analyzer/fetchDependencyGraph");
|
||||
>("rust-analyzer/fetchDependencyList");
|
||||
|
||||
export interface FetchDependencyGraphParams {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue