move diagnostics to ide_api

This commit is contained in:
Aleksey Kladov 2019-03-21 19:05:15 +03:00
parent 48472f55c3
commit 7cae9ddeeb
3 changed files with 250 additions and 258 deletions

View file

@ -11,7 +11,6 @@ mod structure;
mod test_utils;
mod join_lines;
mod typing;
mod diagnostics;
use rustc_hash::FxHashSet;
use ra_text_edit::TextEditBuilder;
@ -27,7 +26,6 @@ pub use crate::{
line_index::{LineCol, LineIndex},
line_index_utils::translate_offset_with_edit,
structure::{file_structure, StructureNode},
diagnostics::diagnostics,
join_lines::join_lines,
typing::{on_enter, on_dot_typed, on_eq_typed},
};