Fix imports
This commit is contained in:
parent
177229bfde
commit
53cab1cd21
@ -3,7 +3,7 @@
|
||||
use either::Either;
|
||||
use hir::{original_range, AssocItem, FieldSource, HasSource, InFile, ModuleSource};
|
||||
use ra_db::{FileId, SourceDatabase};
|
||||
use ra_ide_db::RootDatabase;
|
||||
use ra_ide_db::{defs::Definition, RootDatabase};
|
||||
use ra_syntax::{
|
||||
ast::{self, DocCommentsOwner, NameOwner},
|
||||
match_ast, AstNode, SmolStr,
|
||||
@ -11,11 +11,7 @@
|
||||
TextRange,
|
||||
};
|
||||
|
||||
use crate::{
|
||||
// expand::original_range,
|
||||
references::Definition,
|
||||
FileSymbol,
|
||||
};
|
||||
use crate::FileSymbol;
|
||||
|
||||
use super::short_label::ShortLabel;
|
||||
|
||||
|
@ -1,7 +1,10 @@
|
||||
//! FIXME: write short doc here
|
||||
|
||||
use hir::Semantics;
|
||||
use ra_ide_db::{defs::classify_name, symbol_index, RootDatabase};
|
||||
use ra_ide_db::{
|
||||
defs::{classify_name, classify_name_ref},
|
||||
symbol_index, RootDatabase,
|
||||
};
|
||||
use ra_syntax::{
|
||||
ast::{self},
|
||||
match_ast, AstNode,
|
||||
@ -11,7 +14,6 @@
|
||||
|
||||
use crate::{
|
||||
display::{ToNav, TryToNav},
|
||||
references::classify_name_ref,
|
||||
FilePosition, NavigationTarget, RangeInfo,
|
||||
};
|
||||
|
||||
@ -94,7 +96,7 @@ pub(crate) fn reference_definition(
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use test_utils::{assert_eq_text, covers};
|
||||
use test_utils::assert_eq_text;
|
||||
|
||||
use crate::mock_analysis::analysis_and_position;
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
use hir::{Adt, HasSource, HirDisplay, Semantics};
|
||||
use ra_ide_db::{
|
||||
defs::{classify_name, Definition},
|
||||
defs::{classify_name, classify_name_ref, Definition},
|
||||
RootDatabase,
|
||||
};
|
||||
use ra_syntax::{
|
||||
@ -14,7 +14,6 @@
|
||||
|
||||
use crate::{
|
||||
display::{macro_label, rust_code_markup, rust_code_markup_with_doc, ShortLabel},
|
||||
references::classify_name_ref,
|
||||
FilePosition, RangeInfo,
|
||||
};
|
||||
|
||||
|
@ -15,7 +15,10 @@
|
||||
use hir::Semantics;
|
||||
use once_cell::unsync::Lazy;
|
||||
use ra_db::SourceDatabaseExt;
|
||||
use ra_ide_db::RootDatabase;
|
||||
use ra_ide_db::{
|
||||
defs::{classify_name, classify_name_ref, Definition},
|
||||
RootDatabase,
|
||||
};
|
||||
use ra_prof::profile;
|
||||
use ra_syntax::{
|
||||
algo::find_node_at_offset,
|
||||
@ -27,7 +30,6 @@
|
||||
use crate::{display::TryToNav, FilePosition, FileRange, NavigationTarget, RangeInfo};
|
||||
|
||||
pub(crate) use self::rename::rename;
|
||||
pub(crate) use ra_ide_db::defs::{classify_name, classify_name_ref, Definition, NameRefClass};
|
||||
|
||||
pub use self::search_scope::SearchScope;
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
use hir::{Name, Semantics};
|
||||
use ra_ide_db::{
|
||||
defs::{classify_name, Definition, NameClass},
|
||||
defs::{classify_name, classify_name_ref, Definition, NameClass, NameRefClass},
|
||||
RootDatabase,
|
||||
};
|
||||
use ra_prof::profile;
|
||||
@ -19,11 +19,7 @@
|
||||
};
|
||||
use rustc_hash::FxHashMap;
|
||||
|
||||
use crate::{
|
||||
call_info::call_info_for_token,
|
||||
references::{classify_name_ref, NameRefClass},
|
||||
Analysis, FileId,
|
||||
};
|
||||
use crate::{call_info::call_info_for_token, Analysis, FileId};
|
||||
|
||||
pub(crate) use html::highlight_as_html;
|
||||
pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag};
|
||||
|
Loading…
Reference in New Issue
Block a user