mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
Move symbol_index
This commit is contained in:
parent
ec95152a4e
commit
ad247aa670
7 changed files with 16 additions and 12 deletions
|
@ -14,7 +14,6 @@ mod ide_db;
|
|||
|
||||
mod db;
|
||||
pub mod mock_analysis;
|
||||
mod symbol_index;
|
||||
mod change;
|
||||
mod source_change;
|
||||
|
||||
|
@ -59,7 +58,11 @@ use ra_db::{
|
|||
};
|
||||
use ra_syntax::{SourceFile, TextRange, TextUnit};
|
||||
|
||||
use crate::{db::LineIndexDatabase, display::ToNav, symbol_index::FileSymbol};
|
||||
use crate::{
|
||||
db::LineIndexDatabase,
|
||||
display::ToNav,
|
||||
ide_db::symbol_index::{self, FileSymbol},
|
||||
};
|
||||
|
||||
pub use crate::{
|
||||
assists::{Assist, AssistId},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue