| Age | Commit message (Expand) | Author | Lines |
| 2023-03-28 | Add `(..)` syntax for RTN | Michael Goulet | -48/+52 |
| 2023-03-14 | Remove box expressions from HIR | clubby789 | -4/+0 |
| 2023-03-12 | Remove uses of `box_syntax` in rustc and tools | clubby789 | -2/+2 |
| 2023-02-25 | Add ErrorGuaranteed to HIR ExprKind::Err | Michael Goulet | -1/+1 |
| 2023-02-25 | Add ErrorGuaranteed to HIR TyKind::Err | Michael Goulet | -1/+1 |
| 2023-01-30 | Use `Mutability::{is_mut, is_not}` | Maybe Waffle | -4/+2 |
| 2023-01-12 | parse const closures | Deadbeef | -4/+10 |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -4/+4 |
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -1/+1 |
| 2022-12-15 | more clippy::complexity fixes | Matthias Krüger | -1/+0 |
| 2022-12-12 | Auto merge of #105160 - nnethercote:rm-Lit-token_lit, r=petrochenkov | bors | -1/+1 |
| 2022-12-06 | Remove outdated syntax from trait alias pretty printing | Maybe Waffle | -12/+1 |
| 2022-12-05 | Remove `LitKind::synthesize_token_lit`. | Nicholas Nethercote | -1/+1 |
| 2022-12-03 | Rollup merge of #104199 - SarthakSingh31:issue-97417-1, r=cjgillot | Matthias Krüger | -0/+1 |
| 2022-12-02 | Rename `LitKind::to_token_lit` as `LitKind::synthesize_token_lit`. | Nicholas Nethercote | -1/+1 |
| 2022-12-01 | rustc_hir: Change representation of import paths to support multiple resolutions | Vadim Petrochenkov | -1/+1 |
| 2022-11-28 | Keep track of the start of the argument block of a closure | Sarthak Singh | -0/+1 |
| 2022-11-27 | Auto merge of #104048 - cjgillot:split-lifetime, r=compiler-errors | bors | -1/+1 |
| 2022-11-23 | Add `Mutability::{is_mut,is_not}` | Maybe Waffle | -2/+2 |
| 2022-11-23 | Separate lifetime ident from resolution in HIR. | Camille GILLOT | -1/+1 |
| 2022-11-13 | Store a LocalDefId in hir::Variant & hir::Field. | Camille GILLOT | -1/+1 |
| 2022-11-13 | Store LocalDefId in hir::Closure. | Camille GILLOT | -0/+1 |
| 2022-10-15 | pretty: fix to print some lifetimes on HIR pretty-print | Yutaro Ohno | -1/+5 |
| 2022-10-10 | Rollup merge of #102829 - compiler-errors:rename-impl-item-kind, r=TaKO8Ki | Yuki Okushi | -1/+1 |
| 2022-10-09 | ImplItemKind::TyAlias => ImplItemKind::Type | Michael Goulet | -1/+1 |
| 2022-09-29 | Remove from compiler/ crates | reez12g | -1/+0 |
| 2022-09-08 | Introduce `DotDotPos`. | Nicholas Nethercote | -2/+3 |
| 2022-09-06 | Auto merge of #101241 - camsteffen:refactor-binding-annotations, r=cjgillot | bors | -15/+9 |
| 2022-09-05 | Auto merge of #101261 - TaKO8Ki:separate-receiver-from-arguments-in-hir, r=cj... | bors | -7/+12 |
| 2022-09-05 | separate the receiver from arguments in HIR | Takayuki Maeda | -7/+12 |
| 2022-09-05 | Remove dead code from `print_generic_args`. | Nicholas Nethercote | -27/+7 |
| 2022-09-02 | Refactor and re-use BindingAnnotation | Cameron Steffen | -15/+9 |
| 2022-08-18 | Add diagnostic translation lints to crates that don't emit them | 5225225 | -0/+2 |
| 2022-08-16 | Rename some things related to literals. | Nicholas Nethercote | -1/+1 |
| 2022-08-15 | Auto merge of #96745 - ehuss:even-more-attribute-validation, r=cjgillot | bors | -28/+32 |
| 2022-08-11 | Check attributes on struct expression fields. | Eric Huss | -14/+16 |
| 2022-08-11 | Check attributes on pattern fields. | Eric Huss | -14/+16 |
| 2022-08-12 | Fix HIR pretty printing of let else | Michael Goulet | -0/+4 |
| 2022-07-17 | use rustc_hir_pretty::qpath_to_string to avoid span_to_snippet when rendering... | Michael Goulet | -0/+4 |
| 2022-07-14 | Rollup merge of #98705 - WaffleLapkin:closure_binder, r=cjgillot | Dylan DPC | -3/+41 |
| 2022-07-12 | Add an indirection for closures in `hir::ExprKind` | Maybe Waffle | -3/+3 |
| 2022-07-12 | Lower closure binders to hir & properly check them | Maybe Waffle | -1/+39 |
| 2022-07-11 | move else block into the `Local` struct | Ding Xiang Fei | -3/+3 |
| 2022-07-11 | lower let-else in MIR instead | Ding Xiang Fei | -5/+17 |
| 2022-07-03 | clean up the borrowing in rustc_hir_pretty | KaDiWa | -281/+264 |
| 2022-07-01 | Factor out hir::Node::Binding | Cameron Steffen | -1/+1 |
| 2022-06-21 | Use CreateParameter mode for closures too. | Camille GILLOT | -0/+2 |
| 2022-06-12 | Make `ExprKind::Closure` a struct variant. | Camille GILLOT | -3/+11 |
| 2022-06-04 | Compute lifetimes in scope at diagnostic time. | Camille GILLOT | -15/+20 |
| 2022-05-09 | use hir::Let in hir::Guard | SparrowLii | -7/+2 |