Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/dependencies_provider.ts')
| -rw-r--r-- | editors/code/src/dependencies_provider.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/editors/code/src/dependencies_provider.ts b/editors/code/src/dependencies_provider.ts index 0faf7665cf..59b3b27731 100644 --- a/editors/code/src/dependencies_provider.ts +++ b/editors/code/src/dependencies_provider.ts @@ -1,12 +1,13 @@ import * as vscode from "vscode"; import * as fspath from "path"; import * as fs from "fs"; -import {CtxInit} from "./ctx"; +import { CtxInit } from "./ctx"; import * as ra from "./lsp_ext"; -import {FetchDependencyListResult} from "./lsp_ext"; +import { FetchDependencyListResult } from "./lsp_ext"; export class RustDependenciesProvider - implements vscode.TreeDataProvider<Dependency | DependencyFile> { + implements vscode.TreeDataProvider<Dependency | DependencyFile> +{ dependenciesMap: { [id: string]: Dependency | DependencyFile }; ctx: CtxInit; @@ -131,4 +132,4 @@ export class DependencyFile extends vscode.TreeItem { } } -export type DependencyId = { id: string };
\ No newline at end of file +export type DependencyId = { id: string }; |