push name down to hir_expand

This commit is contained in:
Aleksey Kladov 2019-10-30 18:56:20 +03:00
parent b05d6e53fb
commit 872ac566bf
21 changed files with 49 additions and 50 deletions

View file

@ -6,13 +6,13 @@ pub(crate) mod docs;
use std::sync::Arc;
use hir_def::{
name::{
self, AsName, BOOL, CHAR, F32, F64, I128, I16, I32, I64, I8, ISIZE, SELF_TYPE, STR, U128,
U16, U32, U64, U8, USIZE,
},
type_ref::{Mutability, TypeRef},
CrateModuleId, ModuleId,
};
use hir_expand::name::{
self, AsName, BOOL, CHAR, F32, F64, I128, I16, I32, I64, I8, ISIZE, SELF_TYPE, STR, U128, U16,
U32, U64, U8, USIZE,
};
use ra_db::{CrateId, Edition};
use ra_syntax::ast::{self, NameOwner, TypeAscriptionOwner};