Move hir to a separate crate

This commit is contained in:
Aleksey Kladov 2018-11-28 04:09:44 +03:00
parent 0e4b710af8
commit 59e29aef63
26 changed files with 202 additions and 2432 deletions

View file

@ -12,7 +12,6 @@ use rustc_hash::{FxHashMap};
use crate::{
db,
hir,
Cancelable, FilePosition
};

View file

@ -6,16 +6,16 @@ use ra_syntax::{
ast::{self, LoopBodyOwner},
SyntaxKind::*,
};
use crate::{
db::RootDatabase,
completion::CompletionItem,
hir::{
use hir::{
self,
FnScopes,
Def,
Path,
},
};
use crate::{
db::RootDatabase,
completion::CompletionItem,
Cancelable
};