mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
Remove hir/adt.rs
This commit is contained in:
parent
12ec946216
commit
7c275a7ed2
@ -1,54 +0,0 @@
|
|||||||
//! This module contains the implementation details of the HIR for ADTs, i.e.
|
|
||||||
//! structs and enums (and unions).
|
|
||||||
|
|
||||||
use std::sync::Arc;
|
|
||||||
|
|
||||||
use hir_def::adt::VariantData;
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
db::{DefDatabase, HirDatabase},
|
|
||||||
EnumVariant, Module, Name, Struct, StructField,
|
|
||||||
};
|
|
||||||
|
|
||||||
impl Struct {
|
|
||||||
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
||||||
db.struct_data(self.id.into()).variant_data.clone()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
||||||
pub enum VariantDef {
|
|
||||||
Struct(Struct),
|
|
||||||
EnumVariant(EnumVariant),
|
|
||||||
}
|
|
||||||
impl_froms!(VariantDef: Struct, EnumVariant);
|
|
||||||
|
|
||||||
impl VariantDef {
|
|
||||||
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
|
||||||
match self {
|
|
||||||
VariantDef::Struct(it) => it.fields(db),
|
|
||||||
VariantDef::EnumVariant(it) => it.fields(db),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
|
||||||
match self {
|
|
||||||
VariantDef::Struct(it) => it.field(db, name),
|
|
||||||
VariantDef::EnumVariant(it) => it.field(db, name),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn module(self, db: &impl HirDatabase) -> Module {
|
|
||||||
match self {
|
|
||||||
VariantDef::Struct(it) => it.module(db),
|
|
||||||
VariantDef::EnumVariant(it) => it.module(db),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
|
||||||
match self {
|
|
||||||
VariantDef::Struct(it) => it.variant_data(db),
|
|
||||||
VariantDef::EnumVariant(it) => it.variant_data(db),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -23,7 +23,6 @@ use ra_db::{CrateId, Edition};
|
|||||||
use ra_syntax::ast::{self, NameOwner, TypeAscriptionOwner};
|
use ra_syntax::ast::{self, NameOwner, TypeAscriptionOwner};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
adt::VariantDef,
|
|
||||||
db::{AstDatabase, DefDatabase, HirDatabase},
|
db::{AstDatabase, DefDatabase, HirDatabase},
|
||||||
expr::{BindingAnnotation, Body, BodySourceMap, ExprValidator, Pat, PatId},
|
expr::{BindingAnnotation, Body, BodySourceMap, ExprValidator, Pat, PatId},
|
||||||
generics::{GenericDef, HasGenericParams},
|
generics::{GenericDef, HasGenericParams},
|
||||||
@ -324,6 +323,10 @@ impl Struct {
|
|||||||
// ...and add generic params, if present
|
// ...and add generic params, if present
|
||||||
r.push_generic_params_scope(db, self.into())
|
r.push_generic_params_scope(db, self.into())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
||||||
|
db.struct_data(self.id.into()).variant_data.clone()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
@ -482,6 +485,43 @@ impl Adt {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
||||||
|
pub enum VariantDef {
|
||||||
|
Struct(Struct),
|
||||||
|
EnumVariant(EnumVariant),
|
||||||
|
}
|
||||||
|
impl_froms!(VariantDef: Struct, EnumVariant);
|
||||||
|
|
||||||
|
impl VariantDef {
|
||||||
|
pub fn fields(self, db: &impl HirDatabase) -> Vec<StructField> {
|
||||||
|
match self {
|
||||||
|
VariantDef::Struct(it) => it.fields(db),
|
||||||
|
VariantDef::EnumVariant(it) => it.fields(db),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn field(self, db: &impl HirDatabase, name: &Name) -> Option<StructField> {
|
||||||
|
match self {
|
||||||
|
VariantDef::Struct(it) => it.field(db, name),
|
||||||
|
VariantDef::EnumVariant(it) => it.field(db, name),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn module(self, db: &impl HirDatabase) -> Module {
|
||||||
|
match self {
|
||||||
|
VariantDef::Struct(it) => it.module(db),
|
||||||
|
VariantDef::EnumVariant(it) => it.module(db),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn variant_data(self, db: &impl DefDatabase) -> Arc<VariantData> {
|
||||||
|
match self {
|
||||||
|
VariantDef::Struct(it) => it.variant_data(db),
|
||||||
|
VariantDef::EnumVariant(it) => it.variant_data(db),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// The defs which have a body.
|
/// The defs which have a body.
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
pub enum DefWithBody {
|
pub enum DefWithBody {
|
||||||
|
@ -4,11 +4,10 @@ use hir_def::{HasSource as _, Lookup};
|
|||||||
use ra_syntax::ast::{self, AstNode};
|
use ra_syntax::ast::{self, AstNode};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
adt::VariantDef,
|
|
||||||
db::{AstDatabase, DefDatabase, HirDatabase},
|
db::{AstDatabase, DefDatabase, HirDatabase},
|
||||||
ids::AstItemDef,
|
ids::AstItemDef,
|
||||||
Const, Either, Enum, EnumVariant, FieldSource, Function, HasBody, HirFileId, MacroDef, Module,
|
Const, Either, Enum, EnumVariant, FieldSource, Function, HasBody, HirFileId, MacroDef, Module,
|
||||||
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union, VariantDef,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub use hir_expand::Source;
|
pub use hir_expand::Source;
|
||||||
|
@ -32,7 +32,6 @@ pub mod db;
|
|||||||
pub mod source_binder;
|
pub mod source_binder;
|
||||||
|
|
||||||
mod ids;
|
mod ids;
|
||||||
mod adt;
|
|
||||||
mod type_alias;
|
mod type_alias;
|
||||||
mod ty;
|
mod ty;
|
||||||
mod impl_block;
|
mod impl_block;
|
||||||
@ -56,15 +55,14 @@ mod marks;
|
|||||||
use crate::resolve::Resolver;
|
use crate::resolve::Resolver;
|
||||||
|
|
||||||
pub use crate::{
|
pub use crate::{
|
||||||
adt::VariantDef,
|
|
||||||
code_model::ImplBlock,
|
|
||||||
code_model::{
|
code_model::{
|
||||||
attrs::{AttrDef, Attrs},
|
attrs::{AttrDef, Attrs},
|
||||||
docs::{DocDef, Docs, Documentation},
|
docs::{DocDef, Docs, Documentation},
|
||||||
src::{HasBodySource, HasSource},
|
src::{HasBodySource, HasSource},
|
||||||
Adt, AssocItem, Const, ConstData, Container, Crate, CrateDependency, DefWithBody, Enum,
|
Adt, AssocItem, Const, ConstData, Container, Crate, CrateDependency, DefWithBody, Enum,
|
||||||
EnumVariant, FieldSource, FnData, Function, GenericParam, HasBody, Local, MacroDef, Module,
|
EnumVariant, FieldSource, FnData, Function, GenericParam, HasBody, ImplBlock, Local,
|
||||||
ModuleDef, ModuleSource, Static, Struct, StructField, Trait, TypeAlias, Union,
|
MacroDef, Module, ModuleDef, ModuleSource, Static, Struct, StructField, Trait, TypeAlias,
|
||||||
|
Union, VariantDef,
|
||||||
},
|
},
|
||||||
expr::ExprScopes,
|
expr::ExprScopes,
|
||||||
from_source::FromSource,
|
from_source::FromSource,
|
||||||
|
@ -37,14 +37,13 @@ use super::{
|
|||||||
TypeCtor, TypeWalk, Uncertain,
|
TypeCtor, TypeWalk, Uncertain,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
adt::VariantDef,
|
|
||||||
code_model::TypeAlias,
|
code_model::TypeAlias,
|
||||||
db::HirDatabase,
|
db::HirDatabase,
|
||||||
expr::{BindingAnnotation, Body, ExprId, PatId},
|
expr::{BindingAnnotation, Body, ExprId, PatId},
|
||||||
resolve::{Resolver, TypeNs},
|
resolve::{Resolver, TypeNs},
|
||||||
ty::infer::diagnostics::InferenceDiagnostic,
|
ty::infer::diagnostics::InferenceDiagnostic,
|
||||||
Adt, AssocItem, ConstData, DefWithBody, FloatTy, FnData, Function, HasBody, IntTy, Path,
|
Adt, AssocItem, ConstData, DefWithBody, FloatTy, FnData, Function, HasBody, IntTy, Path,
|
||||||
StructField,
|
StructField, VariantDef,
|
||||||
};
|
};
|
||||||
|
|
||||||
macro_rules! ty_app {
|
macro_rules! ty_app {
|
||||||
|
@ -19,7 +19,6 @@ use super::{
|
|||||||
TypeWalk,
|
TypeWalk,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
adt::VariantDef,
|
|
||||||
db::HirDatabase,
|
db::HirDatabase,
|
||||||
generics::HasGenericParams,
|
generics::HasGenericParams,
|
||||||
generics::{GenericDef, WherePredicate},
|
generics::{GenericDef, WherePredicate},
|
||||||
@ -30,7 +29,7 @@ use crate::{
|
|||||||
},
|
},
|
||||||
util::make_mut_slice,
|
util::make_mut_slice,
|
||||||
Const, Enum, EnumVariant, Function, ModuleDef, Path, Static, Struct, StructField, Trait,
|
Const, Enum, EnumVariant, Function, ModuleDef, Path, Static, Struct, StructField, Trait,
|
||||||
TypeAlias, Union,
|
TypeAlias, Union, VariantDef,
|
||||||
};
|
};
|
||||||
|
|
||||||
// FIXME: this is only really used in `type_for_def`, which contains a bunch of
|
// FIXME: this is only really used in `type_for_def`, which contains a bunch of
|
||||||
|
Loading…
Reference in New Issue
Block a user