From 8e7e405f6ab0c1ee10bfdd3d55a97628fe4cd6dd Mon Sep 17 00:00:00 2001 From: Florian Diebold Date: Sat, 20 Mar 2021 10:51:00 +0100 Subject: Remove WhereClause::Error Chalk doesn't have it, and judging from the removed code, it wasn't useful anyway. --- crates/hir_ty/src/display.rs | 12 +----------- crates/hir_ty/src/lib.rs | 11 +---------- crates/hir_ty/src/lower.rs | 7 ++----- crates/hir_ty/src/tests/traits.rs | 4 ++-- crates/hir_ty/src/traits.rs | 1 - crates/hir_ty/src/traits/chalk.rs | 8 +------- crates/hir_ty/src/traits/chalk/mapping.rs | 7 +------ 7 files changed, 8 insertions(+), 42 deletions(-) (limited to 'crates/hir_ty') diff --git a/crates/hir_ty/src/display.rs b/crates/hir_ty/src/display.rs index 2721b8312..4765c99a4 100644 --- a/crates/hir_ty/src/display.rs +++ b/crates/hir_ty/src/display.rs @@ -731,16 +731,6 @@ fn write_bounds_like_dyn_trait( } ty.hir_fmt(f)?; } - WhereClause::Error => { - if angle_open { - // impl Trait - write!(f, ", ")?; - } else if !first { - // impl Trait + {error} - write!(f, " + ")?; - } - p.hir_fmt(f)?; - } } first = false; } @@ -796,7 +786,7 @@ impl HirDisplay for WhereClause { )?; ty.hir_fmt(f)?; } - WhereClause::AliasEq(_) | WhereClause::Error => write!(f, "{{error}}")?, + WhereClause::AliasEq(_) => write!(f, "{{error}}")?, } Ok(()) } diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs index 5c4d5a7d7..8de2d422f 100644 --- a/crates/hir_ty/src/lib.rs +++ b/crates/hir_ty/src/lib.rs @@ -569,16 +569,9 @@ pub enum WhereClause { Implemented(TraitRef), /// An associated type bindings like in `Iterator`. AliasEq(AliasEq), - /// We couldn't resolve the trait reference. (If some type parameters can't - /// be resolved, they will just be Unknown). - Error, } impl WhereClause { - pub fn is_error(&self) -> bool { - matches!(self, WhereClause::Error) - } - pub fn is_implemented(&self) -> bool { matches!(self, WhereClause::Implemented(_)) } @@ -589,7 +582,7 @@ impl WhereClause { WhereClause::AliasEq(AliasEq { alias: AliasTy::Projection(proj), .. }) => { Some(proj.trait_ref(db)) } - WhereClause::AliasEq(_) | WhereClause::Error => None, + WhereClause::AliasEq(_) => None, } } } @@ -599,7 +592,6 @@ impl TypeWalk for WhereClause { match self { WhereClause::Implemented(trait_ref) => trait_ref.walk(f), WhereClause::AliasEq(alias_eq) => alias_eq.walk(f), - WhereClause::Error => {} } } @@ -611,7 +603,6 @@ impl TypeWalk for WhereClause { match self { WhereClause::Implemented(trait_ref) => trait_ref.walk_mut_binders(f, binders), WhereClause::AliasEq(alias_eq) => alias_eq.walk_mut_binders(f, binders), - WhereClause::Error => {} } } } diff --git a/crates/hir_ty/src/lower.rs b/crates/hir_ty/src/lower.rs index 4199dc7a6..cbbb535e5 100644 --- a/crates/hir_ty/src/lower.rs +++ b/crates/hir_ty/src/lower.rs @@ -703,10 +703,10 @@ impl<'a> TyLoweringContext<'a> { let trait_ref = match bound { TypeBound::Path(path) => { bindings = self.lower_trait_ref_from_path(path, Some(self_ty)); - Some(bindings.clone().map_or(WhereClause::Error, WhereClause::Implemented)) + bindings.clone().map(WhereClause::Implemented) } TypeBound::Lifetime(_) => None, - TypeBound::Error => Some(WhereClause::Error), + TypeBound::Error => None, }; trait_ref.into_iter().chain( bindings @@ -919,9 +919,6 @@ pub(crate) fn trait_environment_query( let mut clauses = Vec::new(); for pred in resolver.where_predicates_in_scope() { for pred in ctx.lower_where_predicate(pred) { - if pred.is_error() { - continue; - } if let WhereClause::Implemented(tr) = &pred { traits_in_scope.push((tr.self_type_parameter().clone(), tr.hir_trait_id())); } diff --git a/crates/hir_ty/src/tests/traits.rs b/crates/hir_ty/src/tests/traits.rs index 8270fa219..8f2bdffc0 100644 --- a/crates/hir_ty/src/tests/traits.rs +++ b/crates/hir_ty/src/tests/traits.rs @@ -1412,8 +1412,8 @@ fn weird_bounds() { 50..51 'b': impl 69..70 'c': impl Trait 86..87 'd': impl - 107..108 'e': impl {error} - 123..124 'f': impl Trait + {error} + 107..108 'e': impl + 123..124 'f': impl Trait 147..149 '{}': () "#]], ); diff --git a/crates/hir_ty/src/traits.rs b/crates/hir_ty/src/traits.rs index 6feb64ceb..87c92bd12 100644 --- a/crates/hir_ty/src/traits.rs +++ b/crates/hir_ty/src/traits.rs @@ -100,7 +100,6 @@ impl Obligation { match predicate { WhereClause::Implemented(trait_ref) => Some(Obligation::Trait(trait_ref)), WhereClause::AliasEq(alias_eq) => Some(Obligation::AliasEq(alias_eq)), - WhereClause::Error => None, } } } diff --git a/crates/hir_ty/src/traits/chalk.rs b/crates/hir_ty/src/traits/chalk.rs index 4144035cd..734679414 100644 --- a/crates/hir_ty/src/traits/chalk.rs +++ b/crates/hir_ty/src/traits/chalk.rs @@ -187,13 +187,7 @@ impl<'a> chalk_solve::RustIrDatabase for ChalkContext<'a> { let data = &datas.value.impl_traits[idx as usize]; let bound = OpaqueTyDatumBound { bounds: make_binders( - data.bounds - .value - .iter() - .cloned() - .filter(|b| !b.is_error()) - .map(|b| b.to_chalk(self.db)) - .collect(), + data.bounds.value.iter().cloned().map(|b| b.to_chalk(self.db)).collect(), 1, ), where_clauses: make_binders(vec![], 0), diff --git a/crates/hir_ty/src/traits/chalk/mapping.rs b/crates/hir_ty/src/traits/chalk/mapping.rs index 5756e9754..7841c216c 100644 --- a/crates/hir_ty/src/traits/chalk/mapping.rs +++ b/crates/hir_ty/src/traits/chalk/mapping.rs @@ -98,7 +98,7 @@ impl ToChalk for Ty { TyKind::Dyn(predicates) => { let where_clauses = chalk_ir::QuantifiedWhereClauses::from_iter( &Interner, - predicates.iter().filter(|p| !p.is_error()).cloned().map(|p| p.to_chalk(db)), + predicates.iter().cloned().map(|p| p.to_chalk(db)), ); let bounded_ty = chalk_ir::DynTy { bounds: make_binders(where_clauses, 1), @@ -318,7 +318,6 @@ impl ToChalk for WhereClause { chalk_ir::WhereClause::AliasEq(alias_eq.to_chalk(db).shifted_in(&Interner)), 0, ), - WhereClause::Error => panic!("tried passing GenericPredicate::Error to Chalk"), } } @@ -521,10 +520,6 @@ pub(super) fn convert_where_clauses( let generic_predicates = db.generic_predicates(def); let mut result = Vec::with_capacity(generic_predicates.len()); for pred in generic_predicates.iter() { - if pred.value.is_error() { - // skip errored predicates completely - continue; - } result.push(pred.clone().subst(substs).to_chalk(db)); } result -- cgit v1.2.3