rust/compiler/rustc_hir_analysis/src
bors 24606deaf4 Auto merge of #104905 - compiler-errors:normalization-changes, r=spastorino
Some initial normalization method changes

1. Rename `AtExt::normalize` to `QueryNormalizeExt::query_normalize` (using the `QueryNormalizer`)
2. Introduce `NormalizeExt::normalize` to replace `partially_normalize_associated_types_in` (using the `AssocTypeNormalizer`)
3. Rename `FnCtxt::normalize_associated_types_in` to `FnCtxt::normalize`
4. Remove some unused other normalization fns in `Inherited` and `FnCtxt`

Also includes one drive-by where we're no longer creating a `FnCtxt` inside of `check_fn`, but passing it in. This means we don't need such weird `FnCtxt` construction logic.

Stacked on top of #104835 for convenience.

r? types
2022-11-30 11:13:09 +00:00
..
astconv Simplify more FnCtxt normalization 2022-11-28 17:35:39 +00:00
check Make ObligationCtxt::normalize take cause by borrow 2022-11-28 17:35:40 +00:00
coherence Rollup merge of #104786 - WaffleLapkin:amp-mut-help, r=compiler-errors 2022-11-26 17:47:23 +01:00
collect Auto merge of #104048 - cjgillot:split-lifetime, r=compiler-errors 2022-11-27 14:30:19 +00:00
impl_wf_check Introduce PredicateKind::Clause 2022-11-25 00:04:54 -03:00
outlives Make inferred_outlives_crate return Clause 2022-11-29 12:01:58 -03:00
structured_errors Change how suggested lifetime args are computed. 2022-11-24 17:48:42 +00:00
variance Prefer doc comments over //-comments in compiler 2022-11-27 11:19:04 +00:00
bounds.rs Stop passing the self-type as a separate argument. 2022-11-21 20:39:46 +00:00
check_unused.rs Rollup merge of #103618 - nnethercote:rename-OwnerId-fields, r=compiler-errors 2022-10-29 14:18:03 +02:00
collect.rs Make inferred_outlives_crate return Clause 2022-11-29 12:01:58 -03:00
constrained_generic_params.rs Introduce PredicateKind::Clause 2022-11-25 00:04:54 -03:00
errors.rs Rollup merge of #103575 - Xiretza:suggestions-style-attr, r=davidtwco 2022-11-01 20:00:38 -04:00
hir_wf_check.rs Convert predicates into Predicate in the Obligation constructor 2022-11-16 09:25:19 +00:00
impl_wf_check.rs Rename some OwnerId fields. 2022-10-29 20:28:38 +11:00
lib.rs Make ObligationCtxt::normalize take cause by borrow 2022-11-28 17:35:40 +00:00
structured_errors.rs