mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 12:54:58 +00:00
Fix imports
This commit is contained in:
parent
177229bfde
commit
53cab1cd21
5 changed files with 14 additions and 19 deletions
|
@ -7,7 +7,7 @@ mod tests;
|
|||
|
||||
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 ra_syntax::{
|
|||
};
|
||||
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…
Add table
Add a link
Reference in a new issue