| Age | Commit message (Expand) | Author | Lines |
| 2024-04-19 | Give a name to each distinct manipulation of pretty-printer FixupContext | David Tolnay | -153/+106 |
| 2024-04-19 | Move pretty-printer FixupContext to a module | David Tolnay | -74/+75 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -3/+3 |
| 2024-04-17 | Rollup merge of #122813 - nnethercote:nicer-quals, r=compiler-errors | Matthias Krüger | -6/+4 |
| 2024-04-16 | Auto merge of #123468 - compiler-errors:precise-capturing, r=oli-obk | bors | -1/+10 |
| 2024-04-16 | Avoid unnecessary `rustc_span::DUMMY_SP` usage. | Nicholas Nethercote | -6/+4 |
| 2024-04-16 | Rollup merge of #123462 - fmease:rn-mod-sep-to-path-sep, r=nnethercote | León Orell Valerian Liehr | -1/+1 |
| 2024-04-15 | Use a path instead of an ident (and stop manually resolving) | Michael Goulet | -1/+1 |
| 2024-04-15 | Validation and other things | Michael Goulet | -2/+10 |
| 2024-04-15 | Parsing , pre-lowering support for precise captures | Michael Goulet | -1/+2 |
| 2024-04-08 | Add pattern types to ast | Oli Scherer | -0/+5 |
| 2024-04-04 | Rename ModSep to PathSep | León Orell Valerian Liehr | -1/+1 |
| 2024-03-29 | Auto merge of #123080 - Jules-Bertholet:mut-ref-mut, r=Nadrieril | bors | -3/+6 |
| 2024-03-27 | chore: fix some comments | xiaoxiangxianzi | -1/+1 |
| 2024-03-27 | Implement `mut ref`/`mut ref mut` | Jules Bertholet | -3/+6 |
| 2024-03-22 | Rollup merge of #121619 - RossSmyth:pfix_match, r=petrochenkov | Matthias Krüger | -5/+15 |
| 2024-03-21 | Implement macro-based deref!() syntax for deref patterns | Michael Goulet | -0/+6 |
| 2024-03-14 | Rename `ast::StmtKind::Local` into `ast::StmtKind::Let` | Guillaume Gomez | -1/+1 |
| 2024-03-09 | Rollup merge of #121584 - klensy:itertools-up, r=Mark-Simulacrum | Guillaume Boisseau | -1/+1 |
| 2024-03-08 | bump itertools to 0.12 | klensy | -1/+1 |
| 2024-03-08 | Rollup merge of #119365 - nbdd0121:asm-goto, r=Amanieu | Matthias Krüger | -0/+4 |
| 2024-03-06 | Add MatchKind member to the Match expr for pretty printing & fmt | Ross Smyth | -5/+15 |
| 2024-03-02 | Rollup merge of #121815 - nnethercote:mv-gather_comments, r=est31 | Matthias Krüger | -2/+124 |
| 2024-03-01 | Move `gather_comments`. | Nicholas Nethercote | -2/+124 |
| 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-02-24 | Add asm label support to AST and HIR | Gary Guo | -0/+4 |
| 2024-02-20 | Add newtype for raw idents | clubby789 | -4/+4 |
| 2024-02-16 | Rollup merge of #121109 - nnethercote:TyKind-Err-guar-2, r=oli-obk | Guillaume Gomez | -1/+6 |
| 2024-02-15 | Add `ErrorGuaranteed` to `ast::LitKind::Err`, `token::LitKind::Err`. | Nicholas Nethercote | -1/+1 |
| 2024-02-15 | Add an `ErrorGuaranteed` to `ast::TyKind::Err`. | Nicholas Nethercote | -1/+6 |
| 2024-02-12 | Lower anonymous structs or unions to HIR | Frank King | -2/+2 |
| 2024-02-09 | Rollup merge of #120693 - nnethercote:invert-diagnostic-lints, r=davidtwco | Matthias Krüger | -2/+0 |
| 2024-02-06 | Invert diagnostic lints. | Nicholas Nethercote | -2/+0 |
| 2024-01-31 | Add async bound modifier to enable async Fn bounds | Michael Goulet | -5/+16 |
| 2024-01-31 | Auto merge of #120227 - nnethercote:further-improve-space_between, r=petroche... | bors | -18/+33 |
| 2024-01-25 | Remove unused features | clubby789 | -2/+0 |
| 2024-01-22 | Fix some cases in `space_between`. | Nicholas Nethercote | -19/+27 |
| 2024-01-22 | Don't insert spaces before most semicolons in `print_tts`. | Nicholas Nethercote | -0/+7 |
| 2024-01-17 | Add `PatKind::Err` | 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 | -44/+298 |
| 2023-12-27 | Introduce `const Trait` (always-const trait bounds) | León Orell Valerian Liehr | -1/+1 |
| 2023-12-23 | Rollup merge of #119231 - aDotInTheVoid:PatKind-struct-bool-docs, r=compiler-... | Matthias Krüger | -2/+2 |
| 2023-12-23 | bool->enum for ast::PatKind::Struct presence of `..` | Alona Enraght-Moony | -2/+2 |
| 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 | -21/+18 |