aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/expr.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/expr.rs
parentf8ddef875af08f6c67fe69f7803f3926bc6f66bb (diff)
remove forward pointer to Path
Diffstat (limited to 'crates/ra_hir/src/expr.rs')
-rw-r--r--crates/ra_hir/src/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/expr.rs b/crates/ra_hir/src/expr.rs
index d238741ba..31857ad56 100644
--- a/crates/ra_hir/src/expr.rs
+++ b/crates/ra_hir/src/expr.rs
@@ -6,13 +6,13 @@ pub(crate) mod validation;
6 6
7use std::{ops::Index, sync::Arc}; 7use std::{ops::Index, sync::Arc};
8 8
9use hir_def::path::GenericArgs;
9use ra_arena::{impl_arena_id, map::ArenaMap, Arena, RawId}; 10use ra_arena::{impl_arena_id, map::ArenaMap, Arena, RawId};
10use ra_syntax::{ast, AstPtr}; 11use ra_syntax::{ast, AstPtr};
11use rustc_hash::FxHashMap; 12use rustc_hash::FxHashMap;
12 13
13use crate::{ 14use crate::{
14 db::HirDatabase, 15 db::HirDatabase,
15 path::GenericArgs,
16 ty::primitive::{UncertainFloatTy, UncertainIntTy}, 16 ty::primitive::{UncertainFloatTy, UncertainIntTy},
17 type_ref::{Mutability, TypeRef}, 17 type_ref::{Mutability, TypeRef},
18 DefWithBody, Either, HasSource, Name, Path, Resolver, Source, 18 DefWithBody, Either, HasSource, Name, Path, Resolver, Source,