mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
Move hir to a separate crate
This commit is contained in:
parent
0e4b710af8
commit
59e29aef63
26 changed files with 202 additions and 2432 deletions
|
@ -12,7 +12,6 @@ use rustc_hash::{FxHashMap};
|
|||
|
||||
use crate::{
|
||||
db,
|
||||
hir,
|
||||
Cancelable, FilePosition
|
||||
};
|
||||
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue