aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-06 10:34:24 +0100
committerGitHub <[email protected]>2020-05-06 10:34:24 +0100
commitede8906844e206f252810d58533538cf1fb326d4 (patch)
treefd9a78d80ae77f1fb706ba48bff0195be24bf5d6 /crates/ra_ide/src/lib.rs
parent18907e6cc52d53b8385a26f3080cd21a6167022b (diff)
parent3850b1c0860a075f1fd569577c2a2fecd1fc2f0c (diff)
Merge #4340
4340: Lift SourceChange to the ra_ide_db r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/lib.rs')
-rw-r--r--crates/ra_ide/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_ide/src/lib.rs b/crates/ra_ide/src/lib.rs
index 12c005f06..4ed02f60e 100644
--- a/crates/ra_ide/src/lib.rs
+++ b/crates/ra_ide/src/lib.rs
@@ -16,7 +16,6 @@ macro_rules! eprintln {
16} 16}
17 17
18pub mod mock_analysis; 18pub mod mock_analysis;
19mod source_change;
20 19
21mod prime_caches; 20mod prime_caches;
22mod status; 21mod status;
@@ -78,7 +77,6 @@ pub use crate::{
78 inlay_hints::{InlayHint, InlayHintsConfig, InlayKind}, 77 inlay_hints::{InlayHint, InlayHintsConfig, InlayKind},
79 references::{Declaration, Reference, ReferenceAccess, ReferenceKind, ReferenceSearchResult}, 78 references::{Declaration, Reference, ReferenceAccess, ReferenceKind, ReferenceSearchResult},
80 runnables::{Runnable, RunnableKind, TestId}, 79 runnables::{Runnable, RunnableKind, TestId},
81 source_change::{FileSystemEdit, SourceChange, SourceFileEdit},
82 ssr::SsrError, 80 ssr::SsrError,
83 syntax_highlighting::{ 81 syntax_highlighting::{
84 Highlight, HighlightModifier, HighlightModifiers, HighlightTag, HighlightedRange, 82 Highlight, HighlightModifier, HighlightModifiers, HighlightTag, HighlightedRange,
@@ -94,6 +92,7 @@ pub use ra_ide_db::{
94 line_index::{LineCol, LineIndex}, 92 line_index::{LineCol, LineIndex},
95 line_index_utils::translate_offset_with_edit, 93 line_index_utils::translate_offset_with_edit,
96 search::SearchScope, 94 search::SearchScope,
95 source_change::{FileSystemEdit, SourceChange, SourceFileEdit},
97 symbol_index::Query, 96 symbol_index::Query,
98 RootDatabase, 97 RootDatabase,
99}; 98};