aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def/src/path.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/path.rs
parent0bc7d285189caaffc13e4d6856baf895f72ed80c (diff)
push either to hir_expand
Diffstat (limited to 'crates/ra_hir_def/src/path.rs')
-rw-r--r--crates/ra_hir_def/src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_def/src/path.rs b/crates/ra_hir_def/src/path.rs
index 39f394c3f..8d57e7761 100644
--- a/crates/ra_hir_def/src/path.rs
+++ b/crates/ra_hir_def/src/path.rs
@@ -2,6 +2,7 @@
2 2
3use std::{iter, sync::Arc}; 3use std::{iter, sync::Arc};
4 4
5use hir_expand::either::Either;
5use ra_db::CrateId; 6use ra_db::CrateId;
6use ra_syntax::{ 7use ra_syntax::{
7 ast::{self, NameOwner, TypeAscriptionOwner}, 8 ast::{self, NameOwner, TypeAscriptionOwner},
@@ -9,7 +10,6 @@ use ra_syntax::{
9}; 10};
10 11
11use crate::{ 12use crate::{
12 either::Either,
13 hygiene::Hygiene, 13 hygiene::Hygiene,
14 name::{self, AsName, Name}, 14 name::{self, AsName, Name},
15 type_ref::TypeRef, 15 type_ref::TypeRef,