| Age | Commit message (Expand) | Author | Lines |
| 2024-05-28 | Create const block DefIds in typeck instead of ast lowering | Oli Scherer | -2/+3 |
| 2024-05-17 | Rename Unsafe to Safety | Santiago Pastorino | -7/+7 |
| 2024-05-15 | delegation: Implement list delegation | Vadim Petrochenkov | -14/+60 |
| 2024-05-11 | Fix redundant parens around braced macro call in match arms | David Tolnay | -6/+53 |
| 2024-05-11 | Fix pretty printer statement boundaries after braced macro call | David Tolnay | -5/+1 |
| 2024-05-11 | Macro call with braces does not require semicolon to be statement | David Tolnay | -1/+5 |
| 2024-05-11 | Mark expr_requires_semi_to_be_stmt call sites | David Tolnay | -1/+1 |
| 2024-05-08 | Rollup merge of #123344 - pietroalbini:pa-unused-imports, r=Nilstrieb | Matthias Krüger | -2/+2 |
| 2024-05-03 | AST pretty: Use `builtin_syntax` for type ascription | León Orell Valerian Liehr | -7/+9 |
| 2024-04-30 | Rollup merge of #124524 - spastorino:make-foreign-static-use-struct, r=oli-obk | Matthias Krüger | -9/+11 |
| 2024-04-29 | Add StaticForeignItem and use it on ForeignItemKind | Santiago Pastorino | -9/+11 |
| 2024-04-29 | Pretty-print parenthesis around binary in postfix match | Sasha Pourcelot | -1/+1 |
| 2024-04-19 | Give a name to each distinct manipulation of pretty-printer FixupContext | David Tolnay | -135/+102 |
| 2024-04-19 | Move pretty-printer FixupContext to a module | David Tolnay | -73/+73 |
| 2024-04-14 | store the span of the nested part of the use tree in the ast | Pietro Albini | -2/+2 |
| 2024-03-27 | chore: fix some comments | xiaoxiangxianzi | -1/+1 |
| 2024-03-06 | Add MatchKind member to the Match expr for pretty printing & fmt | Ross Smyth | -5/+15 |
| 2024-02-29 | AST: Refactor type alias where clauses | León Orell Valerian Liehr | -11/+4 |
| 2024-02-25 | Add `ErrorGuaranteed` to `ast::ExprKind::Err` | Lieselotte | -1/+1 |
| 2024-02-25 | Add `ast::ExprKind::Dummy` | Lieselotte | -0/+5 |
| 2024-01-12 | Delegation implementation: step 1 | Bryanskiy | -0/+31 |
| 2023-12-27 | Auto merge of #119105 - dtolnay:paren, r=WaffleLapkin | bors | -41/+283 |
| 2023-12-22 | Rollup merge of #119169 - fmease:pretty-yeet-syntactic-cruft, r=compiler-errors | Matthias Krüger | -15/+2 |
| 2023-12-22 | Auto merge of #118847 - eholk:for-await, r=compiler-errors | bors | -3/+7 |
| 2023-12-22 | Rid the AST & HIR pretty printers of syntactic cruft | León Orell Valerian Liehr | -15/+2 |
| 2023-12-22 | Auto merge of #119163 - fmease:refactor-ast-trait-bound-modifiers, r=compiler... | bors | -3/+5 |
| 2023-12-20 | Refactor AST trait bound modifiers | León Orell Valerian Liehr | -3/+5 |
| 2023-12-20 | Give `VariantData::Struct` named fields, to clairfy `recovered`. | Alona Enraght-Moony | -1/+1 |
| 2023-12-19 | Plumb awaitness of for loops | Eric Holk | -3/+7 |
| 2023-12-18 | Fix parenthesization of subexprs containing statement boundary | David Tolnay | -41/+283 |
| 2023-12-08 | Do not parenthesize exterior struct lit inside match guards | David Tolnay | -53/+102 |
| 2023-12-08 | Inline cond_needs_par into print_let | David Tolnay | -1/+1 |
| 2023-12-08 | Auto merge of #118420 - compiler-errors:async-gen, r=eholk | bors | -2/+2 |
| 2023-12-08 | coro_kind -> coroutine_kind | Michael Goulet | -2/+2 |
| 2023-12-08 | Auto merge of #118527 - Nadrieril:never_patterns_parse, r=compiler-errors | bors | -16/+21 |
| 2023-12-04 | Option<CoroutineKind> | Eric Holk | -1/+1 |
| 2023-12-04 | Merge Async and Gen into CoroutineKind | Eric Holk | -2/+2 |
| 2023-12-03 | Parse a pattern with no arm | Nadrieril | -16/+21 |
| 2023-11-28 | Rework `ast::BinOpKind::to_string` and `ast::UnOp::to_string`. | Nicholas Nethercote | -3/+3 |
| 2023-11-22 | Auto merge of #117928 - nnethercote:rustc_ast_pretty, r=fee1-dead | bors | -55/+17 |
| 2023-11-22 | Remove or downgrade unnecessary `pub` visibility markers. | Nicholas Nethercote | -6/+6 |
| 2023-11-22 | Remove `IterDelimited`. | Nicholas Nethercote | -49/+11 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -1/+1 |
| 2023-11-04 | Fix remaining uses of `CaptureBy::Value` | Dinu Blanovschi | -1/+1 |
| 2023-10-27 | Add gen blocks to ast and do some broken ast lowering | Oli Scherer | -2/+2 |
| 2023-10-16 | Preserve unicode escapes in format string literals when pretty-printing AST | Paul Gey | -2/+2 |
| 2023-09-11 | Move let expression checking to parsing | Matthew Jasper | -1/+1 |
| 2023-08-24 | Parse unnamed fields and anonymous structs or unions | Frank King | -1/+5 |
| 2023-08-04 | Improve spans for indexing expressions | Nilstrieb | -1/+1 |
| 2023-07-28 | Parse generic const items | León Orell Valerian Liehr | -9/+26 |