mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
remove forward pointer for name
This commit is contained in:
parent
16e620c052
commit
f8ddef875a
16 changed files with 52 additions and 43 deletions
|
@ -36,7 +36,6 @@ mod path;
|
|||
pub mod source_binder;
|
||||
|
||||
mod ids;
|
||||
mod name;
|
||||
mod nameres;
|
||||
mod adt;
|
||||
mod traits;
|
||||
|
@ -61,7 +60,7 @@ mod marks;
|
|||
|
||||
use hir_expand::AstId;
|
||||
|
||||
use crate::{ids::MacroFileKind, name::AsName, resolve::Resolver};
|
||||
use crate::{ids::MacroFileKind, resolve::Resolver};
|
||||
|
||||
pub use crate::{
|
||||
adt::VariantDef,
|
||||
|
@ -71,7 +70,6 @@ pub use crate::{
|
|||
generics::{GenericDef, GenericParam, GenericParams, HasGenericParams},
|
||||
ids::{HirFileId, MacroCallId, MacroCallLoc, MacroDefId, MacroFile},
|
||||
impl_block::ImplBlock,
|
||||
name::Name,
|
||||
nameres::{ImportId, Namespace, PerNs},
|
||||
path::{Path, PathKind},
|
||||
resolve::ScopeDef,
|
||||
|
@ -89,3 +87,5 @@ pub use self::code_model::{
|
|||
Enum, EnumVariant, FieldSource, FnData, Function, HasBody, MacroDef, Module, ModuleDef,
|
||||
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
||||
};
|
||||
|
||||
pub use hir_def::name::Name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue