diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-01-09 12:26:59 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-09 12:26:59 +0000 |
commit | 3263c7076613bf8c3c32bb2bd5be29f10eb0284c (patch) | |
tree | 3fa270a113de26dedcdc1be826a3dd262eceaefc /crates/ra_ide/src/lib.rs | |
parent | 0d6e5a986cc7c3a434c2107edf748d1c26ac3f69 (diff) | |
parent | 6fc80efe7738af3b0d51e66591ea5451f45f6706 (diff) |
Merge #2772
2772: Actually test references r=kjeremy a=kjeremy
This will be a little more work when `ReferenceSearchResults` change but I think it's easier to maintain in the end. It also follows a similar pattern to navigation targets and call hierarchy.
Co-authored-by: kjeremy <[email protected]>
Co-authored-by: Jeremy Kolb <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/lib.rs')
-rw-r--r-- | crates/ra_ide/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide/src/lib.rs b/crates/ra_ide/src/lib.rs index 06497617b..7b187eba3 100644 --- a/crates/ra_ide/src/lib.rs +++ b/crates/ra_ide/src/lib.rs | |||
@@ -75,7 +75,7 @@ pub use crate::{ | |||
75 | inlay_hints::{InlayHint, InlayKind}, | 75 | inlay_hints::{InlayHint, InlayKind}, |
76 | line_index::{LineCol, LineIndex}, | 76 | line_index::{LineCol, LineIndex}, |
77 | line_index_utils::translate_offset_with_edit, | 77 | line_index_utils::translate_offset_with_edit, |
78 | references::{ReferenceSearchResult, SearchScope}, | 78 | references::{Reference, ReferenceKind, ReferenceSearchResult, SearchScope}, |
79 | runnables::{Runnable, RunnableKind}, | 79 | runnables::{Runnable, RunnableKind}, |
80 | source_change::{FileSystemEdit, SourceChange, SourceFileEdit}, | 80 | source_change::{FileSystemEdit, SourceChange, SourceFileEdit}, |
81 | syntax_highlighting::HighlightedRange, | 81 | syntax_highlighting::HighlightedRange, |