mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
Re-export base_db from ide_db
This commit is contained in:
parent
2c787676c9
commit
19cce08662
52 changed files with 69 additions and 74 deletions
|
@ -48,11 +48,11 @@ mod doc_links;
|
|||
|
||||
use std::sync::Arc;
|
||||
|
||||
use base_db::{
|
||||
use cfg::CfgOptions;
|
||||
use ide_db::base_db::{
|
||||
salsa::{self, ParallelDatabase},
|
||||
CheckCanceled, Env, FileLoader, FileSet, SourceDatabase, VfsPath,
|
||||
};
|
||||
use cfg::CfgOptions;
|
||||
use ide_db::{
|
||||
symbol_index::{self, FileSymbol},
|
||||
LineIndexDatabase,
|
||||
|
@ -88,11 +88,11 @@ pub use ide_db::call_info::CallInfo;
|
|||
pub use assists::{
|
||||
utils::MergeBehaviour, Assist, AssistConfig, AssistId, AssistKind, ResolvedAssist,
|
||||
};
|
||||
pub use base_db::{
|
||||
pub use hir::{Documentation, Semantics};
|
||||
pub use ide_db::base_db::{
|
||||
Canceled, Change, CrateGraph, CrateId, Edition, FileId, FilePosition, FileRange, SourceRoot,
|
||||
SourceRootId,
|
||||
};
|
||||
pub use hir::{Documentation, Semantics};
|
||||
pub use ide_db::{
|
||||
label::Label,
|
||||
line_index::{LineCol, LineIndex},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue