| Age | Commit message (Expand) | Author | Lines |
| 2023-03-06 | Implement inferred_outlives_of for impl side RPITITs assoc type | Santiago Pastorino | -0/+3 |
| 2023-03-06 | Implement explicit_predicates_of for impl side RPITITs assoc type | Santiago Pastorino | -0/+6 |
| 2023-03-06 | Implement generics_of for impl side RPITITs assoc type | Santiago Pastorino | -6/+34 |
| 2023-03-06 | Implement param_env for RPITITs assoc type | Santiago Pastorino | -2/+15 |
| 2023-03-06 | Properly implement explicit_item_bounds for RPITITs trait assoc ty | Santiago Pastorino | -3/+0 |
| 2023-03-06 | Add tcx::lower_impl_trait_in_trait_to_assoc_ty to avoid accessing through ses... | Santiago Pastorino | -2/+2 |
| 2023-03-05 | Auto merge of #108351 - petrochenkov:rmdit, r=cjgillot | bors | -2/+1 |
| 2023-03-02 | Feed queries on impl side for RPITITs when using lower_impl_trait_in_trait_to... | Santiago Pastorino | -5/+65 |
| 2023-03-02 | rustc_middle: Remove trait `DefIdTree` | Vadim Petrochenkov | -2/+1 |
| 2023-03-01 | Make associated_item_def_ids for traits use an unstable option to also return... | Santiago Pastorino | -5/+89 |
| 2023-03-01 | Fix typo in docs | Santiago Pastorino | -1/+1 |
| 2023-03-01 | Use DefIdMap instead of FxHashMap for impl_item_implementor_ids query. | Michael Woerister | -3/+2 |
| 2023-02-28 | Shift vars for default RPITIT methods correctly | Michael Goulet | -1/+24 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -40/+37 |
| 2023-02-22 | Rename ty_error_with_guaranteed to ty_error, ty_error to ty_error_misc | Michael Goulet | -1/+1 |
| 2023-02-22 | Auto merge of #108340 - eggyal:remove_traversal_trait_aliases, r=oli-obk | bors | -7/+5 |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -7/+5 |
| 2023-02-22 | errors: generate typed identifiers in each crate | David Wood | -1/+5 |
| 2023-02-21 | Rollup merge of #108141 - spastorino:add_rpitit_queries, r=compiler-errors | Dylan DPC | -2/+101 |
| 2023-02-19 | Document associated_item methods | Santiago Pastorino | -0/+11 |
| 2023-02-19 | Make associated_items_for_impl_trait_in_trait handle impl traits on impls | Santiago Pastorino | -18/+60 |
| 2023-02-19 | Add associated_item_for_impl_trait_in_trait query | Santiago Pastorino | -6/+18 |
| 2023-02-19 | Add associated_items_for_impl_trait_in_trait query | Santiago Pastorino | -2/+36 |
| 2023-02-19 | Rollup merge of #108203 - compiler-errors:rpitit-fix-defaults-2, r=jackh726 | Guillaume Gomez | -2/+59 |
| 2023-02-18 | Assume we can normalize trait default method RPITITs in param-env instead | Michael Goulet | -2/+59 |
| 2023-02-18 | make first component of dyn* use pointer layout+type, and adjust DynStar comment | Ralf Jung | -1/+1 |
| 2023-02-18 | Auto merge of #108112 - nnethercote:clarify-iterator-interners, r=oli-obk,com... | bors | -3/+3 |
| 2023-02-17 | Auto merge of #108075 - WaffleLapkin:de-arena-allocates-you-OwO, r=Nilstrieb | bors | -1/+1 |
| 2023-02-17 | Use `IntoIterator` for `mk_fn_sig`. | Nicholas Nethercote | -1/+1 |
| 2023-02-17 | Remove the `InternIteratorElement` impl for `&'a T`. | Nicholas Nethercote | -2/+2 |
| 2023-02-17 | Replace `mk_foo` calls with `infer_foo` where possible. | Nicholas Nethercote | -1/+1 |
| 2023-02-17 | Auto merge of #107753 - kylematsuda:type-of, r=BoxyUwU | bors | -16/+24 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -19/+17 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -19/+29 |
| 2023-02-17 | Rollup merge of #108133 - kylematsuda:earlybinder-cleanups, r=compiler-errors | Matthias Krüger | -3/+5 |
| 2023-02-16 | Auto merge of #108127 - matthiaskrgr:rollup-kpzfc6j, r=matthiaskrgr | bors | -5/+2 |
| 2023-02-16 | make issue33140_self_ty return Option<EarlyBinder<Ty>> | Kyle Matsuda | -3/+5 |
| 2023-02-16 | Auto merge of #108020 - nnethercote:opt-mk_region, r=compiler-errors | bors | -3/+2 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -5/+2 |
| 2023-02-15 | Copy `ty::AssocItem` all other the place | Maybe Waffle | -1/+1 |
| 2023-02-15 | Auto merge of #108006 - cjgillot:def-impl, r=oli-obk | bors | -1/+1 |
| 2023-02-15 | Rollup merge of #107163 - mikebenfield:parameters-pr, r=TaKO8Ki | Dylan DPC | -11/+11 |
| 2023-02-15 | Add specialized variants of `mk_region`. | Nicholas Nethercote | -3/+2 |
| 2023-02-14 | Add `of_trait` to DefKind::Impl. | Camille GILLOT | -1/+1 |
| 2023-02-14 | s/eval_usize/eval_target_usize/ for clarity | Oli Scherer | -1/+2 |
| 2023-02-13 | layout: deal with placeholders, ICE on bound types | lcnr | -5/+2 |
| 2023-02-07 | Auto merge of #106180 - RalfJung:dereferenceable-generators, r=nbdd0121 | bors | -19/+20 |
| 2023-02-07 | Auto merge of #107693 - petrochenkov:metable, r=oli-obk | bors | -3/+6 |
| 2023-02-06 | also do not add noalias on not-Unpin Box | Ralf Jung | -5/+4 |
| 2023-02-06 | make &mut !Unpin not dereferenceable | Ralf Jung | -6/+9 |