move symbols to ra_analysis

This commit is contained in:
Aleksey Kladov 2019-01-02 16:29:08 +03:00
parent e4ffd7b317
commit a4b4fd7dc5
6 changed files with 255 additions and 256 deletions

View file

@ -3,7 +3,7 @@ mod extend_selection;
mod folding_ranges;
mod line_index;
mod line_index_utils;
mod symbols;
mod structure;
#[cfg(test)]
mod test_utils;
mod typing;
@ -15,7 +15,7 @@ pub use self::{
folding_ranges::{folding_ranges, Fold, FoldKind},
line_index::{LineCol, LineIndex},
line_index_utils::translate_offset_with_edit,
symbols::{file_structure, file_symbols, FileSymbol, StructureNode},
structure::{file_structure, StructureNode},
typing::{join_lines, on_enter, on_eq_typed},
diagnostics::diagnostics
};