diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-03-03 17:55:25 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-03-03 17:55:25 +0000 |
commit | 5abc45982b5558d4c5f8753cb531a4a0858faa0f (patch) | |
tree | c22bce8448c1b61e3c00cf8d7bb6f55d94204280 /crates/ra_ide/src/hover.rs | |
parent | 074474fe00a08d394cbdcac2a136bca825d93377 (diff) | |
parent | 53cab1cd21aa817a3588e64415a26b507ca00edd (diff) |
Merge #3428
3428: Move reference classification to ra_ide_db r=matklad a=matklad
Lost some marks along the way :-(
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/hover.rs')
-rw-r--r-- | crates/ra_ide/src/hover.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs index 26c8996bc..e9c682557 100644 --- a/crates/ra_ide/src/hover.rs +++ b/crates/ra_ide/src/hover.rs | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | use hir::{Adt, HasSource, HirDisplay, Semantics}; | 3 | use hir::{Adt, HasSource, HirDisplay, Semantics}; |
4 | use ra_ide_db::{ | 4 | use ra_ide_db::{ |
5 | defs::{classify_name, Definition}, | 5 | defs::{classify_name, classify_name_ref, Definition}, |
6 | RootDatabase, | 6 | RootDatabase, |
7 | }; | 7 | }; |
8 | use ra_syntax::{ | 8 | use ra_syntax::{ |
@@ -14,7 +14,6 @@ use ra_syntax::{ | |||
14 | 14 | ||
15 | use crate::{ | 15 | use crate::{ |
16 | display::{macro_label, rust_code_markup, rust_code_markup_with_doc, ShortLabel}, | 16 | display::{macro_label, rust_code_markup, rust_code_markup_with_doc, ShortLabel}, |
17 | references::classify_name_ref, | ||
18 | FilePosition, RangeInfo, | 17 | FilePosition, RangeInfo, |
19 | }; | 18 | }; |
20 | 19 | ||