aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-05-06 10:31:26 +0100
committerAleksey Kladov <[email protected]>2020-05-06 10:32:34 +0100
commit3850b1c0860a075f1fd569577c2a2fecd1fc2f0c (patch)
treefd9a78d80ae77f1fb706ba48bff0195be24bf5d6 /crates/ra_ide/src/lib.rs
parentbeb35c3ecb4aa5139571aba70f7364d135302775 (diff)
Lift SourceChange to the ra_ide_db
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};