Move typing to ra_ide_api

This commit is contained in:
Wilco Kusee 2019-03-23 12:07:21 +01:00
parent d99abe4c25
commit 0c15deac76
3 changed files with 6 additions and 7 deletions

View file

@ -4,10 +4,8 @@
//! an edit or some auxiliary info.
mod structure;
mod typing;
use rustc_hash::FxHashSet;
use ra_text_edit::TextEditBuilder;
use ra_syntax::{
SourceFile, SyntaxNode, TextRange, TextUnit, Direction,
algo::find_leaf_at_offset,
@ -17,7 +15,6 @@ use ra_syntax::{
pub use crate::{
structure::{file_structure, StructureNode},
typing::{on_enter, on_dot_typed, on_eq_typed},
};
#[derive(Debug)]