7323: Minor r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2021-01-18 13:11:37 +00:00 committed by GitHub
commit cc58459ee3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,18 +86,15 @@ pub use completion::{
InsertTextFormat,
};
pub use hir::{Documentation, Semantics};
pub use ide_db::base_db::{
Canceled, Change, CrateGraph, CrateId, Edition, FileId, FilePosition, FileRange, SourceRoot,
SourceRootId,
};
pub use ide_db::{
base_db::{
Canceled, Change, CrateGraph, CrateId, Edition, FileId, FilePosition, FileRange,
SourceRoot, SourceRootId,
},
call_info::CallInfo,
search::{FileReference, ReferenceAccess, ReferenceKind},
};
pub use ide_db::{
label::Label,
line_index::{LineCol, LineIndex},
search::SearchScope,
search::{FileReference, ReferenceAccess, ReferenceKind, SearchScope},
source_change::{FileSystemEdit, SourceChange},
symbol_index::Query,
RootDatabase,