| Age | Commit message (Expand) | Author | Lines |
| 2022-11-13 | Store a LocalDefId in hir::Variant & hir::Field. | Camille GILLOT | -7/+10 |
| 2022-11-13 | Store a LocalDefId in hir::AnonConst. | Camille GILLOT | -1/+3 |
| 2022-11-13 | Store a LocalDefId in hir::GenericParam. | Camille GILLOT | -0/+6 |
| 2022-11-13 | Store LocalDefId in hir::Closure. | Camille GILLOT | -0/+3 |
| 2022-11-13 | Create bidirectional bounds between original and duplicated parameters. | Camille GILLOT | -12/+6 |
| 2022-11-11 | Introduce `ExprKind::IncludedBytes` | clubby789 | -1/+8 |
| 2022-11-10 | Refactor nested for-loops into find() calls | Bryan Garza | -12/+5 |
| 2022-11-09 | Allow and add `track_caller` to generators | Bryan Garza | -23/+37 |
| 2022-11-01 | Rollup merge of #103575 - Xiretza:suggestions-style-attr, r=davidtwco | Manish Goregaokar | -1/+2 |
| 2022-10-30 | Rollup merge of #93582 - WaffleLapkin:rpitirpit, r=compiler-errors | Dylan DPC | -1/+15 |
| 2022-10-29 | Rename some `OwnerId` fields. | Nicholas Nethercote | -24/+24 |
| 2022-10-26 | Convert all #[suggestion_*] attributes to #[suggestion(style = "...")] | Xiretza | -1/+2 |
| 2022-10-25 | adopt to compiler changes | Maybe Waffle | -1/+1 |
| 2022-10-25 | Feature gate `impl_trait_in_fn_trait_return` | Maybe Waffle | -1/+4 |
| 2022-10-25 | Allow `impl Fn() -> impl Trait` in return position | Maybe Waffle | -1/+12 |
| 2022-10-23 | Migrate all diagnostics | Nilstrieb | -51/+51 |
| 2022-10-21 | Rollup merge of #103051 - davidtwco:translation-tidying-up, r=compiler-errors | Dylan DPC | -41/+18 |
| 2022-10-19 | Do anonymous lifetimes remapping correctly for nested rpits | Santiago Pastorino | -16/+11 |
| 2022-10-19 | Extract orig_opt_local_def_id as a function | Santiago Pastorino | -4/+12 |
| 2022-10-18 | Rollup merge of #103168 - Amanieu:stable_asm_sym, r=davidtwco | Yuki Okushi | -10/+0 |
| 2022-10-17 | Stabilize asm_sym | Amanieu d'Antras | -10/+0 |
| 2022-10-17 | ast_lowering: use derive more | David Wood | -41/+18 |
| 2022-10-15 | Rollup merge of #102998 - nathanwhit:let-chains-drop-order, r=eholk | Dylan DPC | -20/+45 |
| 2022-10-15 | Auto merge of #99292 - Aaron1011:stability-use-tree, r=cjgillot | bors | -2/+20 |
| 2022-10-13 | Lower condition directly from AST to HIR | Nathan Whitaker | -22/+24 |
| 2022-10-12 | Let chains should still drop temporaries | Nathan Whitaker | -11/+34 |
| 2022-10-12 | Rollup merge of #102623 - davidtwco:translation-eager, r=compiler-errors | Dylan DPC | -3/+12 |
| 2022-10-11 | wip: trying to enable #[track_caller] on async fn | Eric Holk | -2/+20 |
| 2022-10-11 | rustc_hir: Less error-prone methods for accessing `PartialRes` resolution | Vadim Petrochenkov | -37/+27 |
| 2022-10-10 | errors: `AddToDiagnostic::add_to_diagnostic_with` | David Wood | -3/+12 |
| 2022-10-10 | Rename AssocItemKind::TyAlias to AssocItemKind::Type | Michael Goulet | -4/+4 |
| 2022-10-10 | Rollup merge of #102829 - compiler-errors:rename-impl-item-kind, r=TaKO8Ki | Yuki Okushi | -2/+2 |
| 2022-10-09 | ImplItemKind::TyAlias => ImplItemKind::Type | Michael Goulet | -2/+2 |
| 2022-10-06 | Auto merge of #99324 - reez12g:issue-99144, r=jyn514 | bors | -3/+3 |
| 2022-09-30 | create def ids for impl traits during ast lowering | Santiago Pastorino | -9/+18 |
| 2022-09-29 | Mark ignore(illustrative) on docs in compiler/rustc_ast_lowering/src/expr.rs | reez12g | -3/+3 |
| 2022-09-27 | Do not overwrite binders for another HirId. | Camille GILLOT | -0/+2 |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -1/+0 |
| 2022-09-25 | Only lower async fn body if it actually has a body | Michael Goulet | -7/+6 |
| 2022-09-24 | separate definitions and `HIR` owners | Takayuki Maeda | -28/+46 |
| 2022-09-23 | Auto merge of #102165 - matthiaskrgr:rollup-n5oquhe, r=matthiaskrgr | bors | -5/+18 |
| 2022-09-22 | Improve the help message for an invalid calling convention | khyperia | -6/+30 |
| 2022-09-21 | Split out async_fn_in_trait into a separate feature | Dan Johnson | -5/+18 |
| 2022-09-21 | FIX - adopt new Diagnostic naming in newly migrated modules | Jhonny Bill Mena | -1/+1 |
| 2022-09-21 | UPDATE - rename SessionSubdiagnostic macro to Subdiagnostic | Jhonny Bill Mena | -2/+2 |
| 2022-09-21 | UPDATE - rename DiagnosticHandler macro to Diagnostic | Jhonny Bill Mena | -33/+33 |
| 2022-09-21 | UPDATE - rename AddSubdiagnostic trait to AddToDiagnostic | Jhonny Bill Mena | -3/+3 |
| 2022-09-21 | UPDATE - rename DiagnosticHandler trait to IntoDiagnostic | Jhonny Bill Mena | -33/+33 |
| 2022-09-19 | Simplify rpitit handling on lower_fn_decl | Santiago Pastorino | -45/+15 |
| 2022-09-17 | Rollup merge of #93628 - est31:stabilize_let_else, r=joshtriplett | Dylan DPC | -12/+1 |