Skip to content

Commit a9ba32e

Browse files
bors[bot]kjeremy
andauthored
Merge #2749
2749: Basic DocumentHighlightKind support for assignments r=matklad a=kjeremy Wraps references per #2738 and adds limited support for DocumentHighlightKind Read/Write for simple binops assignments. I think I need some help with determining reads/writes. Towards #2560 Co-authored-by: Jeremy Kolb <kjeremy@gmail.com> Co-authored-by: kjeremy <kjeremy@gmail.com>
2 parents 19eb7fa + a633a62 commit a9ba32e

File tree

5 files changed

+239
-67
lines changed

5 files changed

+239
-67
lines changed

crates/ra_ide/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ pub use crate::{
7575
inlay_hints::{InlayHint, InlayKind},
7676
line_index::{LineCol, LineIndex},
7777
line_index_utils::translate_offset_with_edit,
78-
references::{Reference, ReferenceKind, ReferenceSearchResult, SearchScope},
78+
references::{
79+
Declaration, Reference, ReferenceAccess, ReferenceKind, ReferenceSearchResult, SearchScope,
80+
},
7981
runnables::{Runnable, RunnableKind},
8082
source_change::{FileSystemEdit, SourceChange, SourceFileEdit},
8183
syntax_highlighting::HighlightedRange,

0 commit comments

Comments
 (0)