mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 17:07:26 +00:00
Make assoc_resolutions always have a Substitution
This commit is contained in:
parent
a3ea20a142
commit
d3cb032f7e
4 changed files with 16 additions and 26 deletions
|
@ -356,11 +356,12 @@ pub fn eval_const(
|
|||
hir_def::AssocItemId::FunctionId(_) => {
|
||||
Err(ConstEvalError::NotSupported("assoc function"))
|
||||
}
|
||||
// FIXME use actual impl for trait assoc const
|
||||
hir_def::AssocItemId::ConstId(c) => ctx.db.const_eval(c),
|
||||
hir_def::AssocItemId::TypeAliasId(_) => {
|
||||
Err(ConstEvalError::NotSupported("assoc type alias"))
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
match pr {
|
||||
|
|
|
@ -349,7 +349,7 @@ pub struct InferenceResult {
|
|||
/// For each struct literal or pattern, records the variant it resolves to.
|
||||
variant_resolutions: FxHashMap<ExprOrPatId, VariantId>,
|
||||
/// For each associated item record what it resolves to
|
||||
assoc_resolutions: FxHashMap<ExprOrPatId, (AssocItemId, Option<Substitution>)>,
|
||||
assoc_resolutions: FxHashMap<ExprOrPatId, (AssocItemId, Substitution)>,
|
||||
pub diagnostics: Vec<InferenceDiagnostic>,
|
||||
pub type_of_expr: ArenaMap<ExprId, Ty>,
|
||||
/// For each pattern record the type it resolves to.
|
||||
|
@ -379,16 +379,10 @@ impl InferenceResult {
|
|||
pub fn variant_resolution_for_pat(&self, id: PatId) -> Option<VariantId> {
|
||||
self.variant_resolutions.get(&id.into()).copied()
|
||||
}
|
||||
pub fn assoc_resolutions_for_expr(
|
||||
&self,
|
||||
id: ExprId,
|
||||
) -> Option<(AssocItemId, Option<Substitution>)> {
|
||||
pub fn assoc_resolutions_for_expr(&self, id: ExprId) -> Option<(AssocItemId, Substitution)> {
|
||||
self.assoc_resolutions.get(&id.into()).cloned()
|
||||
}
|
||||
pub fn assoc_resolutions_for_pat(
|
||||
&self,
|
||||
id: PatId,
|
||||
) -> Option<(AssocItemId, Option<Substitution>)> {
|
||||
pub fn assoc_resolutions_for_pat(&self, id: PatId) -> Option<(AssocItemId, Substitution)> {
|
||||
self.assoc_resolutions.get(&id.into()).cloned()
|
||||
}
|
||||
pub fn type_mismatch_for_expr(&self, expr: ExprId) -> Option<&TypeMismatch> {
|
||||
|
@ -653,12 +647,7 @@ impl<'a> InferenceContext<'a> {
|
|||
self.result.variant_resolutions.insert(id, variant);
|
||||
}
|
||||
|
||||
fn write_assoc_resolution(
|
||||
&mut self,
|
||||
id: ExprOrPatId,
|
||||
item: AssocItemId,
|
||||
subs: Option<Substitution>,
|
||||
) {
|
||||
fn write_assoc_resolution(&mut self, id: ExprOrPatId, item: AssocItemId, subs: Substitution) {
|
||||
self.result.assoc_resolutions.insert(id, (item, subs));
|
||||
}
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ use hir_def::{
|
|||
AdtId, AssocItemId, EnumVariantId, ItemContainerId, Lookup,
|
||||
};
|
||||
use hir_expand::name::Name;
|
||||
use stdx::never;
|
||||
|
||||
use crate::{
|
||||
builder::ParamKind,
|
||||
|
@ -212,7 +213,7 @@ impl<'a> InferenceContext<'a> {
|
|||
AssocItemId::TypeAliasId(_) => unreachable!(),
|
||||
};
|
||||
|
||||
self.write_assoc_resolution(id, item, Some(trait_ref.substitution.clone()));
|
||||
self.write_assoc_resolution(id, item, trait_ref.substitution.clone());
|
||||
Some((def, Some(trait_ref.substitution)))
|
||||
}
|
||||
|
||||
|
@ -259,7 +260,7 @@ impl<'a> InferenceContext<'a> {
|
|||
let impl_self_ty =
|
||||
self.db.impl_self_ty(impl_id).substitute(Interner, &impl_substs);
|
||||
self.unify(&impl_self_ty, &ty);
|
||||
Some(impl_substs)
|
||||
impl_substs
|
||||
}
|
||||
ItemContainerId::TraitId(trait_) => {
|
||||
// we're picking this method
|
||||
|
@ -268,13 +269,16 @@ impl<'a> InferenceContext<'a> {
|
|||
.fill_with_inference_vars(&mut self.table)
|
||||
.build();
|
||||
self.push_obligation(trait_ref.clone().cast(Interner));
|
||||
Some(trait_ref.substitution)
|
||||
trait_ref.substitution
|
||||
}
|
||||
ItemContainerId::ModuleId(_) | ItemContainerId::ExternBlockId(_) => {
|
||||
never!("assoc item contained in module/extern block");
|
||||
return None;
|
||||
}
|
||||
ItemContainerId::ModuleId(_) | ItemContainerId::ExternBlockId(_) => None,
|
||||
};
|
||||
|
||||
self.write_assoc_resolution(id, item, substs.clone());
|
||||
Some((def, substs))
|
||||
Some((def, Some(substs)))
|
||||
},
|
||||
)
|
||||
}
|
||||
|
|
|
@ -502,11 +502,7 @@ impl SourceAnalyzer {
|
|||
}
|
||||
}
|
||||
AssocItemId::ConstId(const_id) => {
|
||||
if let Some(subs) = subs {
|
||||
self.resolve_impl_const_or_trait_def(db, const_id, subs).into()
|
||||
} else {
|
||||
assoc
|
||||
}
|
||||
self.resolve_impl_const_or_trait_def(db, const_id, subs).into()
|
||||
}
|
||||
_ => assoc,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue