aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir/src/expr.rs')
-rw-r--r--crates/ra_hir/src/expr.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_hir/src/expr.rs b/crates/ra_hir/src/expr.rs
index fc21e269f..698fa671b 100644
--- a/crates/ra_hir/src/expr.rs
+++ b/crates/ra_hir/src/expr.rs
@@ -9,10 +9,11 @@ use ra_syntax::{ast, AstPtr};
9use rustc_hash::FxHashMap; 9use rustc_hash::FxHashMap;
10 10
11use crate::{ 11use crate::{
12 db::HirDatabase,
12 path::GenericArgs, 13 path::GenericArgs,
13 ty::primitive::{UncertainFloatTy, UncertainIntTy}, 14 ty::primitive::{UncertainFloatTy, UncertainIntTy},
14 type_ref::{Mutability, TypeRef}, 15 type_ref::{Mutability, TypeRef},
15 DefWithBody, Either, HasSource, HirDatabase, Name, Path, Resolver, Source, 16 DefWithBody, Either, HasSource, Name, Path, Resolver, Source,
16}; 17};
17 18
18pub use self::scope::ExprScopes; 19pub use self::scope::ExprScopes;