rust-analyzer/crates/hir-def/src/generics.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

625 lines
24 KiB
Rust
Raw Normal View History

2019-11-20 09:25:02 +00:00
//! Many kinds of items or constructs can have generic parameters: functions,
//! structs, impls, traits, etc. This module provides a common HIR for these
//! generic parameters. See also the `Generics` type and the `generics_of` query
//! in rustc.
2020-08-13 14:25:38 +00:00
use base_db::FileId;
2019-12-07 17:24:52 +00:00
use either::Either;
use hir_expand::{
2021-09-25 16:57:57 +00:00
name::{AsName, Name},
ExpandResult, HirFileId, InFile,
2019-12-07 17:24:52 +00:00
};
use intern::Interned;
2021-12-29 13:35:59 +00:00
use la_arena::{Arena, ArenaMap, Idx};
use once_cell::unsync::Lazy;
2021-12-29 13:35:59 +00:00
use stdx::impl_from;
2021-09-27 10:54:24 +00:00
use syntax::ast::{self, HasGenericParams, HasName, HasTypeBounds};
2023-05-02 14:12:22 +00:00
use triomphe::Arc;
2019-11-20 09:25:02 +00:00
use crate::{
2019-12-07 18:52:09 +00:00
child_by_source::ChildBySource,
2019-11-23 11:44:43 +00:00
db::DefDatabase,
2023-04-06 17:49:33 +00:00
dyn_map::{keys, DynMap},
expander::Expander,
item_tree::ItemTree,
lower::LowerCtx,
nameres::{DefMap, MacroSubNs},
src::{HasChildSource, HasSource},
type_ref::{ConstRef, LifetimeRef, TypeBound, TypeRef},
2022-03-09 18:50:24 +00:00
AdtId, ConstParamId, GenericDefId, HasModule, LifetimeParamId, LocalLifetimeParamId,
LocalTypeOrConstParamId, Lookup, TypeOrConstParamId, TypeParamId,
2019-11-20 09:25:02 +00:00
};
2021-01-01 09:06:42 +00:00
/// Data about a generic type parameter (to a function, struct, impl, ...).
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct TypeParamData {
2020-01-24 18:35:09 +00:00
pub name: Option<Name>,
pub default: Option<Interned<TypeRef>>,
2020-01-24 18:35:09 +00:00
pub provenance: TypeParamProvenance,
}
2021-01-01 09:06:42 +00:00
/// Data about a generic lifetime parameter (to a function, struct, impl, ...).
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
2020-12-11 12:49:32 +00:00
pub struct LifetimeParamData {
pub name: Name,
}
2021-01-01 09:06:42 +00:00
/// Data about a generic const parameter (to a function, struct, impl, ...).
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
2021-01-01 09:06:42 +00:00
pub struct ConstParamData {
pub name: Name,
pub ty: Interned<TypeRef>,
pub default: Option<ConstRef>,
2021-01-01 09:06:42 +00:00
}
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
2020-01-24 18:35:09 +00:00
pub enum TypeParamProvenance {
TypeParamList,
TraitSelf,
ArgumentImplTrait,
2019-11-20 09:25:02 +00:00
}
2021-12-29 13:35:59 +00:00
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub enum TypeOrConstParamData {
TypeParamData(TypeParamData),
ConstParamData(ConstParamData),
}
impl TypeOrConstParamData {
pub fn name(&self) -> Option<&Name> {
match self {
2023-07-06 14:03:17 +00:00
TypeOrConstParamData::TypeParamData(it) => it.name.as_ref(),
TypeOrConstParamData::ConstParamData(it) => Some(&it.name),
2021-12-29 13:35:59 +00:00
}
}
pub fn has_default(&self) -> bool {
match self {
2023-07-06 14:03:17 +00:00
TypeOrConstParamData::TypeParamData(it) => it.default.is_some(),
TypeOrConstParamData::ConstParamData(it) => it.default.is_some(),
}
}
2021-12-29 13:35:59 +00:00
pub fn type_param(&self) -> Option<&TypeParamData> {
match self {
2023-07-06 14:03:17 +00:00
TypeOrConstParamData::TypeParamData(it) => Some(it),
2021-12-29 13:35:59 +00:00
TypeOrConstParamData::ConstParamData(_) => None,
}
}
pub fn const_param(&self) -> Option<&ConstParamData> {
match self {
TypeOrConstParamData::TypeParamData(_) => None,
2023-07-06 14:03:17 +00:00
TypeOrConstParamData::ConstParamData(it) => Some(it),
}
}
2021-12-29 13:35:59 +00:00
pub fn is_trait_self(&self) -> bool {
match self {
2023-07-06 14:03:17 +00:00
TypeOrConstParamData::TypeParamData(it) => {
it.provenance == TypeParamProvenance::TraitSelf
2021-12-29 13:35:59 +00:00
}
TypeOrConstParamData::ConstParamData(_) => false,
}
}
}
impl_from!(TypeParamData, ConstParamData for TypeOrConstParamData);
2019-11-20 09:25:02 +00:00
/// Data about the generic parameters of a function, struct, impl, etc.
#[derive(Clone, PartialEq, Eq, Debug, Default, Hash)]
2019-11-20 09:25:02 +00:00
pub struct GenericParams {
2022-03-09 18:50:24 +00:00
pub type_or_consts: Arena<TypeOrConstParamData>,
2020-12-11 12:49:32 +00:00
pub lifetimes: Arena<LifetimeParamData>,
2019-11-20 09:25:02 +00:00
pub where_predicates: Vec<WherePredicate>,
}
/// A single predicate from a where clause, i.e. `where Type: Trait`. Combined
/// where clauses like `where T: Foo + Bar` are turned into multiple of these.
/// It might still result in multiple actual predicates though, because of
/// associated type bindings like `Iterator<Item = u32>`.
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
2020-12-11 12:49:32 +00:00
pub enum WherePredicate {
TypeBound {
target: WherePredicateTypeTarget,
bound: Interned<TypeBound>,
},
Lifetime {
target: LifetimeRef,
bound: LifetimeRef,
},
ForLifetime {
lifetimes: Box<[Name]>,
target: WherePredicateTypeTarget,
bound: Interned<TypeBound>,
},
2019-11-20 09:25:02 +00:00
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
2020-12-11 12:49:32 +00:00
pub enum WherePredicateTypeTarget {
TypeRef(Interned<TypeRef>),
/// For desugared where predicates that can directly refer to a type param.
2021-12-29 13:35:59 +00:00
TypeOrConstParam(LocalTypeOrConstParamId),
}
2019-11-20 09:25:02 +00:00
impl GenericParams {
2022-03-09 18:50:24 +00:00
/// Iterator of type_or_consts field
pub fn iter(
&self,
2022-03-09 18:50:24 +00:00
) -> impl DoubleEndedIterator<Item = (Idx<TypeOrConstParamData>, &TypeOrConstParamData)> {
self.type_or_consts.iter()
2021-12-29 13:35:59 +00:00
}
2019-11-20 17:33:18 +00:00
pub(crate) fn generic_params_query(
db: &dyn DefDatabase,
2019-11-20 17:33:18 +00:00
def: GenericDefId,
) -> Interned<GenericParams> {
2020-08-12 14:32:36 +00:00
let _p = profile::span("generic_params_query");
2023-07-28 01:17:10 +00:00
let krate = def.module(db).krate;
let cfg_options = db.crate_graph();
let cfg_options = &cfg_options[krate].cfg_options;
// Returns the generic parameters that are enabled under the current `#[cfg]` options
let enabled_params = |params: &Interned<GenericParams>, item_tree: &ItemTree| {
2023-07-28 01:17:10 +00:00
let enabled = |param| item_tree.attrs(db, krate, param).is_cfg_enabled(cfg_options);
// In the common case, no parameters will by disabled by `#[cfg]` attributes.
// Therefore, make a first pass to check if all parameters are enabled and, if so,
// clone the `Interned<GenericParams>` instead of recreating an identical copy.
let all_type_or_consts_enabled =
params.type_or_consts.iter().all(|(idx, _)| enabled(idx.into()));
let all_lifetimes_enabled = params.lifetimes.iter().all(|(idx, _)| enabled(idx.into()));
if all_type_or_consts_enabled && all_lifetimes_enabled {
params.clone()
} else {
Interned::new(GenericParams {
type_or_consts: all_type_or_consts_enabled
.then(|| params.type_or_consts.clone())
.unwrap_or_else(|| {
params
.type_or_consts
.iter()
.filter_map(|(idx, param)| {
enabled(idx.into()).then(|| param.clone())
})
.collect()
}),
lifetimes: all_lifetimes_enabled
.then(|| params.lifetimes.clone())
.unwrap_or_else(|| {
params
.lifetimes
.iter()
.filter_map(|(idx, param)| {
enabled(idx.into()).then(|| param.clone())
})
.collect()
}),
where_predicates: params.where_predicates.clone(),
})
}
2023-07-28 01:17:10 +00:00
};
2022-06-23 18:08:29 +00:00
macro_rules! id_to_generics {
($id:ident) => {{
let id = $id.lookup(db).id;
let tree = id.item_tree(db);
let item = &tree[id.value];
2023-07-28 01:17:10 +00:00
enabled_params(&item.generic_params, &tree)
2022-06-23 18:08:29 +00:00
}};
}
2021-06-07 11:59:01 +00:00
match def {
GenericDefId::FunctionId(id) => {
let loc = id.lookup(db);
let tree = loc.id.item_tree(db);
let item = &tree[loc.id.value];
let enabled_params = enabled_params(&item.explicit_generic_params, &tree);
let mut generic_params = GenericParams::clone(&enabled_params);
let module = loc.container.module(db);
let func_data = db.function_data(id);
2023-12-14 13:11:12 +00:00
// Don't create an `Expander` if not needed since this
// could cause a reparse after the `ItemTree` has been created due to the spanmap.
let mut expander =
Lazy::new(|| (module.def_map(db), Expander::new(db, loc.id.file_id(), module)));
2023-11-14 09:08:19 +00:00
for param in func_data.params.iter() {
generic_params.fill_implicit_impl_trait_args(db, &mut expander, param);
}
Interned::new(generic_params)
}
2022-06-23 18:08:29 +00:00
GenericDefId::AdtId(AdtId::StructId(id)) => id_to_generics!(id),
GenericDefId::AdtId(AdtId::EnumId(id)) => id_to_generics!(id),
GenericDefId::AdtId(AdtId::UnionId(id)) => id_to_generics!(id),
GenericDefId::TraitId(id) => id_to_generics!(id),
2023-03-03 15:24:07 +00:00
GenericDefId::TraitAliasId(id) => id_to_generics!(id),
2022-06-23 18:08:29 +00:00
GenericDefId::TypeAliasId(id) => id_to_generics!(id),
GenericDefId::ImplId(id) => id_to_generics!(id),
GenericDefId::EnumVariantId(_) | GenericDefId::ConstId(_) => {
Interned::new(GenericParams::default())
}
2021-06-07 11:59:01 +00:00
}
2019-11-20 17:33:18 +00:00
}
pub(crate) fn fill(
&mut self,
lower_ctx: &LowerCtx<'_>,
node: &dyn HasGenericParams,
add_param_attrs: impl FnMut(
Either<Idx<TypeOrConstParamData>, Idx<LifetimeParamData>>,
ast::GenericParam,
),
) {
if let Some(params) = node.generic_param_list() {
self.fill_params(lower_ctx, params, add_param_attrs)
2019-11-20 09:25:02 +00:00
}
if let Some(where_clause) = node.where_clause() {
2020-04-30 10:20:13 +00:00
self.fill_where_predicates(lower_ctx, where_clause);
2019-11-20 09:25:02 +00:00
}
}
2020-06-17 10:24:05 +00:00
pub(crate) fn fill_bounds(
2020-04-30 10:20:13 +00:00
&mut self,
2022-07-20 13:02:08 +00:00
lower_ctx: &LowerCtx<'_>,
type_bounds: Option<ast::TypeBoundList>,
2020-12-11 12:49:32 +00:00
target: Either<TypeRef, LifetimeRef>,
2020-04-30 10:20:13 +00:00
) {
for bound in type_bounds.iter().flat_map(|type_bound_list| type_bound_list.bounds()) {
self.add_where_predicate_from_bound(lower_ctx, bound, None, target.clone());
2019-11-20 09:25:02 +00:00
}
}
fn fill_params(
&mut self,
lower_ctx: &LowerCtx<'_>,
params: ast::GenericParamList,
mut add_param_attrs: impl FnMut(
Either<Idx<TypeOrConstParamData>, Idx<LifetimeParamData>>,
ast::GenericParam,
),
) {
2021-12-29 13:35:59 +00:00
for type_or_const_param in params.type_or_const_params() {
match type_or_const_param {
ast::TypeOrConstParam::Type(type_param) => {
let name = type_param.name().map_or_else(Name::missing, |it| it.as_name());
// FIXME: Use `Path::from_src`
let default = type_param
.default_type()
.map(|it| Interned::new(TypeRef::from_ast(lower_ctx, it)));
let param = TypeParamData {
name: Some(name.clone()),
default,
provenance: TypeParamProvenance::TypeParamList,
};
let idx = self.type_or_consts.alloc(param.into());
2021-12-29 13:35:59 +00:00
let type_ref = TypeRef::Path(name.into());
self.fill_bounds(
lower_ctx,
type_param.type_bound_list(),
Either::Left(type_ref),
);
add_param_attrs(Either::Left(idx), ast::GenericParam::TypeParam(type_param));
2021-12-29 13:35:59 +00:00
}
ast::TypeOrConstParam::Const(const_param) => {
let name = const_param.name().map_or_else(Name::missing, |it| it.as_name());
let ty = const_param
.ty()
.map_or(TypeRef::Error, |it| TypeRef::from_ast(lower_ctx, it));
let param = ConstParamData {
name,
ty: Interned::new(ty),
2023-08-08 18:16:28 +00:00
default: ConstRef::from_const_param(lower_ctx, &const_param),
};
let idx = self.type_or_consts.alloc(param.into());
add_param_attrs(Either::Left(idx), ast::GenericParam::ConstParam(const_param));
2021-12-29 13:35:59 +00:00
}
}
2020-12-11 12:49:32 +00:00
}
for lifetime_param in params.lifetime_params() {
2020-12-15 18:23:51 +00:00
let name =
lifetime_param.lifetime().map_or_else(Name::missing, |lt| Name::new_lifetime(&lt));
2020-12-11 12:49:32 +00:00
let param = LifetimeParamData { name: name.clone() };
let idx = self.lifetimes.alloc(param);
2020-12-11 12:49:32 +00:00
let lifetime_ref = LifetimeRef::new_name(name);
self.fill_bounds(
lower_ctx,
lifetime_param.type_bound_list(),
Either::Right(lifetime_ref),
);
add_param_attrs(Either::Right(idx), ast::GenericParam::LifetimeParam(lifetime_param));
2019-11-20 09:25:02 +00:00
}
}
2022-07-20 13:02:08 +00:00
fn fill_where_predicates(&mut self, lower_ctx: &LowerCtx<'_>, where_clause: ast::WhereClause) {
2019-11-20 09:25:02 +00:00
for pred in where_clause.predicates() {
2020-12-11 12:49:32 +00:00
let target = if let Some(type_ref) = pred.ty() {
Either::Left(TypeRef::from_ast(lower_ctx, type_ref))
2020-12-15 18:23:51 +00:00
} else if let Some(lifetime) = pred.lifetime() {
Either::Right(LifetimeRef::new(&lifetime))
2020-12-11 12:49:32 +00:00
} else {
continue;
2019-11-20 09:25:02 +00:00
};
let lifetimes: Option<Box<_>> = pred.generic_param_list().map(|param_list| {
// Higher-Ranked Trait Bounds
param_list
.lifetime_params()
.map(|lifetime_param| {
lifetime_param
.lifetime()
.map_or_else(Name::missing, |lt| Name::new_lifetime(&lt))
})
.collect()
});
2019-11-20 09:25:02 +00:00
for bound in pred.type_bound_list().iter().flat_map(|l| l.bounds()) {
self.add_where_predicate_from_bound(
lower_ctx,
bound,
lifetimes.as_ref(),
target.clone(),
);
2019-11-20 09:25:02 +00:00
}
}
}
2020-04-30 10:20:13 +00:00
fn add_where_predicate_from_bound(
&mut self,
2022-07-20 13:02:08 +00:00
lower_ctx: &LowerCtx<'_>,
2020-04-30 10:20:13 +00:00
bound: ast::TypeBound,
hrtb_lifetimes: Option<&Box<[Name]>>,
2020-12-11 12:49:32 +00:00
target: Either<TypeRef, LifetimeRef>,
2020-04-30 10:20:13 +00:00
) {
let bound = TypeBound::from_ast(lower_ctx, bound);
2020-12-11 12:49:32 +00:00
let predicate = match (target, bound) {
(Either::Left(type_ref), bound) => match hrtb_lifetimes {
Some(hrtb_lifetimes) => WherePredicate::ForLifetime {
lifetimes: hrtb_lifetimes.clone(),
target: WherePredicateTypeTarget::TypeRef(Interned::new(type_ref)),
bound: Interned::new(bound),
},
None => WherePredicate::TypeBound {
target: WherePredicateTypeTarget::TypeRef(Interned::new(type_ref)),
bound: Interned::new(bound),
},
2020-12-11 12:49:32 +00:00
},
(Either::Right(lifetime), TypeBound::Lifetime(bound)) => {
WherePredicate::Lifetime { target: lifetime, bound }
}
_ => return,
};
self.where_predicates.push(predicate);
2019-11-20 09:25:02 +00:00
}
pub(crate) fn fill_implicit_impl_trait_args(
&mut self,
db: &dyn DefDatabase,
exp: &mut Lazy<(Arc<DefMap>, Expander), impl FnOnce() -> (Arc<DefMap>, Expander)>,
type_ref: &TypeRef,
) {
2020-01-24 18:35:09 +00:00
type_ref.walk(&mut |type_ref| {
if let TypeRef::ImplTrait(bounds) = type_ref {
2020-01-24 18:35:09 +00:00
let param = TypeParamData {
name: None,
default: None,
provenance: TypeParamProvenance::ArgumentImplTrait,
};
2022-03-09 18:50:24 +00:00
let param_id = self.type_or_consts.alloc(param.into());
for bound in bounds {
2020-12-11 12:49:32 +00:00
self.where_predicates.push(WherePredicate::TypeBound {
2021-12-29 13:35:59 +00:00
target: WherePredicateTypeTarget::TypeOrConstParam(param_id),
2020-02-07 14:13:15 +00:00
bound: bound.clone(),
});
}
2020-01-24 18:35:09 +00:00
}
if let TypeRef::Macro(mc) = type_ref {
let macro_call = mc.to_node(db.upcast());
let (def_map, expander) = &mut **exp;
let module = expander.module.local_id;
let resolver = |path| {
def_map
.resolve_path(
db,
module,
&path,
crate::item_scope::BuiltinShadowMode::Other,
Some(MacroSubNs::Bang),
)
.0
.take_macros()
};
if let Ok(ExpandResult { value: Some((mark, expanded)), .. }) =
expander.enter_expand(db, macro_call, resolver)
{
let ctx = expander.ctx(db);
let type_ref = TypeRef::from_ast(&ctx, expanded.tree());
self.fill_implicit_impl_trait_args(db, &mut *exp, &type_ref);
exp.1.exit(mark);
}
}
2020-01-24 18:35:09 +00:00
});
}
pub(crate) fn shrink_to_fit(&mut self) {
2022-03-09 18:50:24 +00:00
let Self { lifetimes, type_or_consts: types, where_predicates } = self;
lifetimes.shrink_to_fit();
types.shrink_to_fit();
where_predicates.shrink_to_fit();
}
2022-03-09 18:50:24 +00:00
pub fn find_type_by_name(&self, name: &Name, parent: GenericDefId) -> Option<TypeParamId> {
self.type_or_consts.iter().find_map(|(id, p)| {
if p.name().as_ref() == Some(&name) && p.type_param().is_some() {
Some(TypeParamId::from_unchecked(TypeOrConstParamId { local_id: id, parent }))
} else {
None
}
})
2022-03-04 09:00:53 +00:00
}
2022-03-09 18:50:24 +00:00
pub fn find_const_by_name(&self, name: &Name, parent: GenericDefId) -> Option<ConstParamId> {
self.type_or_consts.iter().find_map(|(id, p)| {
if p.name().as_ref() == Some(&name) && p.const_param().is_some() {
Some(ConstParamId::from_unchecked(TypeOrConstParamId { local_id: id, parent }))
} else {
None
}
})
2019-11-20 17:33:18 +00:00
}
2021-12-29 13:35:59 +00:00
pub fn find_trait_self_param(&self) -> Option<LocalTypeOrConstParamId> {
2022-03-09 18:50:24 +00:00
self.type_or_consts.iter().find_map(|(id, p)| {
2022-06-23 18:08:29 +00:00
matches!(
p,
TypeOrConstParamData::TypeParamData(TypeParamData {
provenance: TypeParamProvenance::TraitSelf,
..
})
)
.then(|| id)
2020-02-07 14:13:15 +00:00
})
}
2019-11-20 17:33:18 +00:00
}
fn file_id_and_params_of(
def: GenericDefId,
db: &dyn DefDatabase,
) -> (HirFileId, Option<ast::GenericParamList>) {
match def {
GenericDefId::FunctionId(it) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
GenericDefId::AdtId(AdtId::StructId(it)) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
GenericDefId::AdtId(AdtId::UnionId(it)) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
GenericDefId::AdtId(AdtId::EnumId(it)) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
GenericDefId::TraitId(it) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
2023-03-03 15:24:07 +00:00
GenericDefId::TraitAliasId(it) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
GenericDefId::TypeAliasId(it) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
GenericDefId::ImplId(it) => {
let src = it.lookup(db).source(db);
(src.file_id, src.value.generic_param_list())
}
// We won't be using this ID anyway
GenericDefId::EnumVariantId(_) | GenericDefId::ConstId(_) => (FileId::BOGUS.into(), None),
}
}
2021-12-29 13:35:59 +00:00
impl HasChildSource<LocalTypeOrConstParamId> for GenericDefId {
2023-03-03 15:24:07 +00:00
type Value = Either<ast::TypeOrConstParam, ast::TraitOrAlias>;
fn child_source(
&self,
db: &dyn DefDatabase,
2021-12-29 13:35:59 +00:00
) -> InFile<ArenaMap<LocalTypeOrConstParamId, Self::Value>> {
let generic_params = db.generic_params(*self);
2022-03-09 18:50:24 +00:00
let mut idx_iter = generic_params.type_or_consts.iter().map(|(idx, _)| idx);
let (file_id, generic_params_list) = file_id_and_params_of(*self, db);
let mut params = ArenaMap::default();
2023-03-03 15:24:07 +00:00
// For traits and trait aliases the first type index is `Self`, we need to add it before
// the other params.
match *self {
GenericDefId::TraitId(id) => {
let trait_ref = id.lookup(db).source(db).value;
let idx = idx_iter.next().unwrap();
params.insert(idx, Either::Right(ast::TraitOrAlias::Trait(trait_ref)));
}
GenericDefId::TraitAliasId(id) => {
let alias = id.lookup(db).source(db).value;
let idx = idx_iter.next().unwrap();
params.insert(idx, Either::Right(ast::TraitOrAlias::TraitAlias(alias)));
}
_ => {}
}
if let Some(generic_params_list) = generic_params_list {
2021-12-29 13:35:59 +00:00
for (idx, ast_param) in idx_iter.zip(generic_params_list.type_or_const_params()) {
params.insert(idx, Either::Left(ast_param));
}
}
InFile::new(file_id, params)
}
}
impl HasChildSource<LocalLifetimeParamId> for GenericDefId {
type Value = ast::LifetimeParam;
fn child_source(
&self,
db: &dyn DefDatabase,
) -> InFile<ArenaMap<LocalLifetimeParamId, Self::Value>> {
let generic_params = db.generic_params(*self);
let idx_iter = generic_params.lifetimes.iter().map(|(idx, _)| idx);
let (file_id, generic_params_list) = file_id_and_params_of(*self, db);
let mut params = ArenaMap::default();
if let Some(generic_params_list) = generic_params_list {
for (idx, ast_param) in idx_iter.zip(generic_params_list.lifetime_params()) {
params.insert(idx, ast_param);
}
}
InFile::new(file_id, params)
2019-12-07 17:24:52 +00:00
}
}
2019-12-07 18:52:09 +00:00
impl ChildBySource for GenericDefId {
fn child_by_source_to(&self, db: &dyn DefDatabase, res: &mut DynMap, file_id: HirFileId) {
let (gfile_id, generic_params_list) = file_id_and_params_of(*self, db);
if gfile_id != file_id {
return;
}
let generic_params = db.generic_params(*self);
2022-03-09 18:50:24 +00:00
let mut toc_idx_iter = generic_params.type_or_consts.iter().map(|(idx, _)| idx);
let lts_idx_iter = generic_params.lifetimes.iter().map(|(idx, _)| idx);
// For traits the first type index is `Self`, skip it.
if let GenericDefId::TraitId(_) = *self {
2021-12-29 13:35:59 +00:00
toc_idx_iter.next().unwrap(); // advance_by(1);
}
if let Some(generic_params_list) = generic_params_list {
2021-12-29 13:35:59 +00:00
for (local_id, ast_param) in
toc_idx_iter.zip(generic_params_list.type_or_const_params())
{
let id = TypeOrConstParamId { parent: *self, local_id };
match ast_param {
ast::TypeOrConstParam::Type(a) => res[keys::TYPE_PARAM].insert(a, id),
ast::TypeOrConstParam::Const(a) => res[keys::CONST_PARAM].insert(a, id),
}
}
for (local_id, ast_param) in lts_idx_iter.zip(generic_params_list.lifetime_params()) {
let id = LifetimeParamId { parent: *self, local_id };
res[keys::LIFETIME_PARAM].insert(ast_param, id);
}
2021-01-01 09:06:42 +00:00
}
2019-12-07 18:52:09 +00:00
}
}