aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-11-03 20:49:44 +0000
committerAleksey Kladov <[email protected]>2019-11-03 20:49:44 +0000
commitf0eb9cc6e66a65d2df42c662499ebd77ea980de5 (patch)
tree7673a9cc57111683c4f679e5bb8c2bd1c1b5378c /crates/ra_hir/src/lib.rs
parent73fcf9a2d6ae14afa4e822370c0a46bf1d336081 (diff)
Remove last traces of nameres from hir
Diffstat (limited to 'crates/ra_hir/src/lib.rs')
-rw-r--r--crates/ra_hir/src/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/crates/ra_hir/src/lib.rs b/crates/ra_hir/src/lib.rs
index 52bad2228..3ba99d92d 100644
--- a/crates/ra_hir/src/lib.rs
+++ b/crates/ra_hir/src/lib.rs
@@ -34,7 +34,6 @@ pub mod mock;
34pub mod source_binder; 34pub mod source_binder;
35 35
36mod ids; 36mod ids;
37mod nameres;
38mod adt; 37mod adt;
39mod traits; 38mod traits;
40mod type_alias; 39mod type_alias;
@@ -73,7 +72,6 @@ pub use crate::{
73 generics::{GenericDef, GenericParam, GenericParams, HasGenericParams}, 72 generics::{GenericDef, GenericParam, GenericParams, HasGenericParams},
74 ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile}, 73 ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
75 impl_block::ImplBlock, 74 impl_block::ImplBlock,
76 nameres::{ImportId, Namespace, PerNs},
77 resolve::ScopeDef, 75 resolve::ScopeDef,
78 source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer}, 76 source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
79 ty::{ 77 ty::{
@@ -83,6 +81,10 @@ pub use crate::{
83 81
84pub use hir_def::{ 82pub use hir_def::{
85 builtin_type::BuiltinType, 83 builtin_type::BuiltinType,
84 nameres::{
85 per_ns::{Namespace, PerNs},
86 raw::ImportId,
87 },
86 path::{Path, PathKind}, 88 path::{Path, PathKind},
87 type_ref::Mutability, 89 type_ref::Mutability,
88}; 90};