| Age | Commit message (Expand) | Author | Lines |
| 2024-03-14 | Rename `ast::StmtKind::Local` into `ast::StmtKind::Let` | Guillaume Gomez | -4/+4 |
| 2024-03-06 | Rollup merge of #121382 - nnethercote:rework-untranslatable_diagnostic-lint, ... | Matthias Krüger | -0/+1 |
| 2024-03-06 | Rewrite the `untranslatable_diagnostic` lint. | Nicholas Nethercote | -0/+1 |
| 2024-03-05 | errors: share `SilentEmitter` between rustc and rustfmt | David Wood | -49/+31 |
| 2024-03-05 | Rename `DiagnosticMessage` as `DiagMessage`. | Nicholas Nethercote | -1/+1 |
| 2024-03-05 | Rename all `ParseSess` variables/fields/lifetimes as `psess`. | Nicholas Nethercote | -141/+126 |
| 2024-03-04 | Tweak `parse_asm_args`. | Nicholas Nethercote | -1/+1 |
| 2024-02-29 | Rollup merge of #121326 - fmease:detect-empty-leading-where-clauses-on-ty-ali... | Matthias Krüger | -24/+6 |
| 2024-02-29 | AST: Refactor type alias where clauses | León Orell Valerian Liehr | -24/+6 |
| 2024-02-29 | Rollup merge of #121783 - nnethercote:emitter-cleanups, r=oli-obk | Guillaume Gomez | -4/+7 |
| 2024-02-29 | Inline and remove `HumanEmitter::stderr`. | Nicholas Nethercote | -2/+5 |
| 2024-02-29 | Rename `DiagCtxt::with_emitter` as `DiagCtxt::new`. | Nicholas Nethercote | -2/+2 |
| 2024-02-29 | Reinstate `emit_stashed_diagnostics` in `DiagCtxtInner::drop`. | Nicholas Nethercote | -22/+7 |
| 2024-02-28 | Rename `DiagnosticBuilder` as `Diag`. | Nicholas Nethercote | -4/+4 |
| 2024-02-28 | Rename `Diagnostic` as `DiagInner`. | Nicholas Nethercote | -12/+12 |
| 2024-02-26 | Auto merge of #121636 - matthiaskrgr:rollup-1tt2o5n, r=matthiaskrgr | bors | -19/+35 |
| 2024-02-26 | Rollup merge of #121615 - nnethercote:fix-121517, r=oli-obk | Matthias Krüger | -19/+35 |
| 2024-02-26 | Auto merge of #120586 - ShE3py:exprkind-err, r=fmease | bors | -2/+3 |
| 2024-02-26 | Move `emit_stashed_diagnostic` call in rustfmt. | Nicholas Nethercote | -19/+35 |
| 2024-02-25 | Add `ErrorGuaranteed` to `ast::ExprKind::Err` | Lieselotte | -2/+2 |
| 2024-02-25 | Add `ast::ExprKind::Dummy` | Lieselotte | -1/+2 |
| 2024-02-25 | Auto merge of #120393 - Urgau:rfc3373-non-local-defs, r=WaffleLapkin | bors | -0/+1 |
| 2024-02-23 | Explicitly call `emit_stashed_diagnostics`. | Nicholas Nethercote | -5/+23 |
| 2024-02-17 | Rollup merge of #121085 - davidtwco:always-eager-diagnostics, r=nnethercote | Matthias Krüger | -0/+11 |
| 2024-02-17 | Allow newly added non_local_definitions in rustfmt | Urgau | -0/+1 |
| 2024-02-15 | errors: only eagerly translate subdiagnostics | David Wood | -0/+11 |
| 2024-02-15 | Add an `ErrorGuaranteed` to `ast::TyKind::Err`. | Nicholas Nethercote | -1/+1 |
| 2024-02-14 | Rollup merge of #121035 - compiler-errors:rustfmt-asyncness, r=calebcartwright | Guillaume Gomez | -4/+18 |
| 2024-02-13 | Format async bounds in rustfmt | Michael Goulet | -4/+18 |
| 2024-02-12 | Add rustfmt test from #117942 | Frank King | -0/+12 |
| 2024-02-12 | Lower anonymous structs or unions to HIR | Frank King | -2/+2 |
| 2024-02-05 | Make `Emitter::emit_diagnostic` consuming. | Nicholas Nethercote | -10/+10 |
| 2024-01-22 | Actually, just use nonterminal_may_begin_with | Michael Goulet | -8/+7 |
| 2024-01-22 | Do not eagerly recover malformed AST in rustfmt | Michael Goulet | -1/+1 |
| 2024-01-22 | Check that a token can begin a nonterminal kind before parsing it as a macro ... | Michael Goulet | -17/+28 |
| 2024-01-17 | Add `PatKind::Err` | Lieselotte | -3/+6 |
| 2024-01-12 | Delegation implementation: step 1 | Bryanskiy | -1/+10 |
| 2024-01-11 | Stop using `DiagnosticBuilder::buffer` in the parser. | Nicholas Nethercote | -5/+7 |
| 2024-01-11 | Change how `force-warn` lint diagnostics are recorded. | Nicholas Nethercote | -4/+4 |
| 2024-01-08 | Make `DiagnosticBuilder::emit` consuming. | Nicholas Nethercote | -2/+2 |
| 2024-01-05 | Rollup merge of #119601 - nnethercote:Emitter-cleanups, r=oli-obk | Michael Goulet | -2/+2 |
| 2024-01-05 | Rename `EmitterWriter` as `HumanEmitter`. | Nicholas Nethercote | -2/+2 |
| 2024-01-02 | Rename `unused_tuple_struct_fields` in rustfmt | Jake Goulding | -1/+1 |
| 2024-01-01 | Address unused tuple struct fields in rustfmt | Jake Goulding | -1/+1 |
| 2023-12-23 | Rollup merge of #119231 - aDotInTheVoid:PatKind-struct-bool-docs, r=compiler-... | Matthias Krüger | -3/+9 |
| 2023-12-23 | bool->enum for ast::PatKind::Struct presence of `..` | Alona Enraght-Moony | -3/+9 |
| 2023-12-23 | Improve some names. | Nicholas Nethercote | -1/+1 |
| 2023-12-22 | Auto merge of #118847 - eholk:for-await, r=compiler-errors | bors | -13/+23 |
| 2023-12-22 | Auto merge of #119163 - fmease:refactor-ast-trait-bound-modifiers, r=compiler... | bors | -20/+11 |
| 2023-12-20 | Refactor AST trait bound modifiers | León Orell Valerian Liehr | -20/+11 |