Skip to content

Commit ba15f75

Browse files
committed
Auto merge of rust-lang#13225 - lowr:fix/hir-proj-normalization, r=Veykril
fixup: remove unnecessary `Option` Fixup for rust-lang#13223, two things: - `normalize_projection_query()` (and consequently `HirDatabase::normalize_projection()`) never returns `None` (well, it used to when I first wrote it...), so just return `Ty` instead of `Option<Ty>` - When chalk cannot normalize projection uniquely, `normalize_trait_assoc_type()` used to return `None` before rust-lang#13223, but not anymore because of the first point. I restored the behavior so its callers work as before.
2 parents 125d43c + d223c28 commit ba15f75

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

crates/hir-ty/src/db.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ pub trait HirDatabase: DefDatabase + Upcast<dyn DefDatabase> {
156156
&self,
157157
projection: crate::ProjectionTy,
158158
env: Arc<crate::TraitEnvironment>,
159-
) -> Option<crate::Ty>;
159+
) -> Ty;
160160

161161
#[salsa::invoke(trait_solve_wait)]
162162
#[salsa::transparent]

crates/hir-ty/src/traits.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ pub(crate) fn normalize_projection_query(
6969
db: &dyn HirDatabase,
7070
projection: ProjectionTy,
7171
env: Arc<TraitEnvironment>,
72-
) -> Option<Ty> {
73-
let mut table = InferenceTable::new(db, env.clone());
72+
) -> Ty {
73+
let mut table = InferenceTable::new(db, env);
7474
let ty = table.normalize_projection_ty(projection);
75-
Some(table.resolve_completely(ty))
75+
table.resolve_completely(ty)
7676
}
7777

7878
/// Solve a trait goal using Chalk.

crates/hir/src/lib.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -2892,7 +2892,12 @@ impl Type {
28922892
})
28932893
.build();
28942894

2895-
db.normalize_projection(projection, self.env.clone()).map(|ty| self.derived(ty))
2895+
let ty = db.normalize_projection(projection, self.env.clone());
2896+
if ty.is_unknown() {
2897+
None
2898+
} else {
2899+
Some(self.derived(ty))
2900+
}
28962901
}
28972902

28982903
pub fn is_copy(&self, db: &dyn HirDatabase) -> bool {

0 commit comments

Comments
 (0)