mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
Remove last traces of nameres from hir
This commit is contained in:
parent
73fcf9a2d6
commit
f0eb9cc6e6
8 changed files with 59 additions and 67 deletions
|
@ -34,7 +34,6 @@ pub mod mock;
|
|||
pub mod source_binder;
|
||||
|
||||
mod ids;
|
||||
mod nameres;
|
||||
mod adt;
|
||||
mod traits;
|
||||
mod type_alias;
|
||||
|
@ -73,7 +72,6 @@ pub use crate::{
|
|||
generics::{GenericDef, GenericParam, GenericParams, HasGenericParams},
|
||||
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
|
||||
impl_block::ImplBlock,
|
||||
nameres::{ImportId, Namespace, PerNs},
|
||||
resolve::ScopeDef,
|
||||
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
|
||||
ty::{
|
||||
|
@ -83,6 +81,10 @@ pub use crate::{
|
|||
|
||||
pub use hir_def::{
|
||||
builtin_type::BuiltinType,
|
||||
nameres::{
|
||||
per_ns::{Namespace, PerNs},
|
||||
raw::ImportId,
|
||||
},
|
||||
path::{Path, PathKind},
|
||||
type_ref::Mutability,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue