aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-05-06 15:39:11 +0100
committerAleksey Kladov <[email protected]>2020-05-06 15:39:11 +0100
commit020ca6695f4d58f651984c4fbe2227d891896bb3 (patch)
tree5189803adf9b8d89cb4823362e568748de039396 /crates/ra_assists/src/lib.rs
parent4d50709a96f92f3927b3ac59110d593b49c53008 (diff)
Simplify
Diffstat (limited to 'crates/ra_assists/src/lib.rs')
-rw-r--r--crates/ra_assists/src/lib.rs14
1 files changed, 1 insertions, 13 deletions
diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs
index 6e81ea8ee..13ea45ec7 100644
--- a/crates/ra_assists/src/lib.rs
+++ b/crates/ra_assists/src/lib.rs
@@ -18,7 +18,7 @@ pub mod utils;
18pub mod ast_transform; 18pub mod ast_transform;
19 19
20use hir::Semantics; 20use hir::Semantics;
21use ra_db::{FileId, FileRange}; 21use ra_db::FileRange;
22use ra_ide_db::{source_change::SourceChange, RootDatabase}; 22use ra_ide_db::{source_change::SourceChange, RootDatabase};
23use ra_syntax::TextRange; 23use ra_syntax::TextRange;
24 24
@@ -62,18 +62,6 @@ pub struct ResolvedAssist {
62 pub source_change: SourceChange, 62 pub source_change: SourceChange,
63} 63}
64 64
65#[derive(Debug, Clone, Copy)]
66enum AssistFile {
67 CurrentFile,
68 TargetFile(FileId),
69}
70
71impl Default for AssistFile {
72 fn default() -> Self {
73 Self::CurrentFile
74 }
75}
76
77/// Return all the assists applicable at the given position. 65/// Return all the assists applicable at the given position.
78/// 66///
79/// Assists are returned in the "unresolved" state, that is only labels are 67/// Assists are returned in the "unresolved" state, that is only labels are