aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/hygiene.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-10-30 15:50:10 +0000
committerAleksey Kladov <[email protected]>2019-10-30 15:50:10 +0000
commitb05d6e53fb0e9a008dc2e1220b1201818e63ed2d (patch)
treeb3207114d918b50b17adc1db589454fed266eed7 /crates/ra_hir_def/src/hygiene.rs
parent0bc7d285189caaffc13e4d6856baf895f72ed80c (diff)
push either to hir_expand
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 {