aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/hygiene.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir_def/src/hygiene.rs')
-rw-r--r--crates/ra_hir_def/src/hygiene.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/ra_hir_def/src/hygiene.rs b/crates/ra_hir_def/src/hygiene.rs
index e1ae58a3b..f51c46fcb 100644
--- a/crates/ra_hir_def/src/hygiene.rs
+++ b/crates/ra_hir_def/src/hygiene.rs
@@ -4,14 +4,12 @@
4//! this moment, this is horribly incomplete and handles only `$crate`. 4//! this moment, this is horribly incomplete and handles only `$crate`.
5// Should this be moved to `hir_expand`? Seems like it. 5// Should this be moved to `hir_expand`? Seems like it.
6 6
7use hir_expand::either::Either;
7use hir_expand::{db::AstDatabase, HirFileId}; 8use hir_expand::{db::AstDatabase, HirFileId};
8use ra_db::CrateId; 9use ra_db::CrateId;
9use ra_syntax::ast; 10use ra_syntax::ast;
10 11
11use crate::{ 12use crate::name::{AsName, Name};
12 either::Either,
13 name::{AsName, Name},
14};
15 13
16#[derive(Debug)] 14#[derive(Debug)]
17pub struct Hygiene { 15pub struct Hygiene {