mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
remove forward pointer to Path
This commit is contained in:
parent
f8ddef875a
commit
e564334320
12 changed files with 27 additions and 20 deletions
|
@ -32,7 +32,6 @@ pub mod debug;
|
|||
pub mod db;
|
||||
#[macro_use]
|
||||
pub mod mock;
|
||||
mod path;
|
||||
pub mod source_binder;
|
||||
|
||||
mod ids;
|
||||
|
@ -71,7 +70,6 @@ pub use crate::{
|
|||
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
|
||||
impl_block::ImplBlock,
|
||||
nameres::{ImportId, Namespace, PerNs},
|
||||
path::{Path, PathKind},
|
||||
resolve::ScopeDef,
|
||||
source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer},
|
||||
ty::{
|
||||
|
@ -88,4 +86,7 @@ pub use self::code_model::{
|
|||
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
||||
};
|
||||
|
||||
pub use hir_def::name::Name;
|
||||
pub use hir_def::{
|
||||
name::Name,
|
||||
path::{Path, PathKind},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue