aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/typing
diff options
context:
space:
mode:
authorIgor Aleksanov <[email protected]>2020-10-24 09:39:57 +0100
committerIgor Aleksanov <[email protected]>2020-10-24 09:39:57 +0100
commit19cce08662222f012a0f50ff73afd4fdd34ca683 (patch)
tree6561f9a2802caff7b5fe56eeaa0c751bc5015a91 /crates/ide/src/typing
parent2c787676c92c81a0c9efeb3e72a91c5132c8106a (diff)
Re-export base_db from ide_db
Diffstat (limited to 'crates/ide/src/typing')
-rw-r--r--crates/ide/src/typing/on_enter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/typing/on_enter.rs b/crates/ide/src/typing/on_enter.rs
index 98adef1d6..f4ea30352 100644
--- a/crates/ide/src/typing/on_enter.rs
+++ b/crates/ide/src/typing/on_enter.rs
@@ -1,7 +1,7 @@
1//! Handles the `Enter` key press. At the momently, this only continues 1//! Handles the `Enter` key press. At the momently, this only continues
2//! comments, but should handle indent some time in the future as well. 2//! comments, but should handle indent some time in the future as well.
3 3
4use base_db::{FilePosition, SourceDatabase}; 4use ide_db::base_db::{FilePosition, SourceDatabase};
5use ide_db::RootDatabase; 5use ide_db::RootDatabase;
6use syntax::{ 6use syntax::{
7 ast::{self, AstToken}, 7 ast::{self, AstToken},