aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/generics.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-10-30 14:24:36 +0000
committerAleksey Kladov <[email protected]>2019-10-30 14:43:14 +0000
commite56433432057712086ca623c4a1ef40089004839 (patch)
treeff07a196ffcd7c6f298f6d0ef7563f05c2264d4e /crates/ra_hir/src/generics.rs
parentf8ddef875af08f6c67fe69f7803f3926bc6f66bb (diff)
remove forward pointer to Path
Diffstat (limited to 'crates/ra_hir/src/generics.rs')
-rw-r--r--crates/ra_hir/src/generics.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ra_hir/src/generics.rs b/crates/ra_hir/src/generics.rs
index 61786a614..45f9713a0 100644
--- a/crates/ra_hir/src/generics.rs
+++ b/crates/ra_hir/src/generics.rs
@@ -5,12 +5,14 @@
5 5
6use std::sync::Arc; 6use std::sync::Arc;
7 7
8use hir_def::name::{self, AsName}; 8use hir_def::{
9 name::{self, AsName},
10 path::Path,
11};
9use ra_syntax::ast::{self, DefaultTypeParamOwner, NameOwner, TypeBoundsOwner, TypeParamsOwner}; 12use ra_syntax::ast::{self, DefaultTypeParamOwner, NameOwner, TypeBoundsOwner, TypeParamsOwner};
10 13
11use crate::{ 14use crate::{
12 db::{AstDatabase, DefDatabase, HirDatabase}, 15 db::{AstDatabase, DefDatabase, HirDatabase},
13 path::Path,
14 type_ref::{TypeBound, TypeRef}, 16 type_ref::{TypeBound, TypeRef},
15 Adt, Const, Container, Enum, EnumVariant, Function, HasSource, ImplBlock, Name, Struct, Trait, 17 Adt, Const, Container, Enum, EnumVariant, Function, HasSource, ImplBlock, Name, Struct, Trait,
16 TypeAlias, Union, 18 TypeAlias, Union,