| Age | Commit message (Expand) | Author | Lines |
| 2022-05-11 | Remove some unnecessary invisible delimiter checks. | Nicholas Nethercote | -2/+1 |
| 2022-04-28 | Rollup merge of #96433 - petrochenkov:delim, r=nnethercote | Dylan DPC | -42/+43 |
| 2022-04-28 | Rollup merge of #96405 - pvdrz:ambiguous-plus-diagnostic, r=davidtwco | Dylan DPC | -9/+12 |
| 2022-04-28 | rustc_ast: Harmonize delimiter naming with `proc_macro::Delimiter` | Vadim Petrochenkov | -42/+43 |
| 2022-04-27 | rename `sum_with_parens` | Christian Poveda | -6/+3 |
| 2022-04-26 | move `AmbigousPlus` outside | Christian Poveda | -9/+10 |
| 2022-04-26 | avoid `format!` | Christian Poveda | -2/+2 |
| 2022-04-25 | remove old code | Christian Poveda | -9/+0 |
| 2022-04-25 | migrate ambiguous plus diagnostic | Christian Poveda | -9/+23 |
| 2022-04-23 | Better handle too many `#` recovery in raw str | Esteban Küber | -9/+34 |
| 2022-04-05 | errors: implement fallback diagnostic translation | David Wood | -14/+22 |
| 2022-04-05 | span: move `MultiSpan` | David Wood | -3/+3 |
| 2022-04-03 | Auto merge of #88672 - camelid:inc-parser-sugg, r=davidtwco | bors | -1/+213 |
| 2022-04-02 | Fix doctest multi-line mod attributes handling | Guillaume Gomez | -0/+4 |
| 2022-03-30 | Spellchecking compiler comments | Yuri Astrakhan | -1/+1 |
| 2022-03-27 | Fix from rebase | Noah Lev | -5/+5 |
| 2022-03-25 | diagnostics: correct generic bounds with doubled colon | Michael Howell | -0/+28 |
| 2022-03-23 | Fix rustfix panic on test | Noah Lev | -1/+1 |
| 2022-03-23 | Use `multipart_suggestions` | Noah Lev | -48/+54 |
| 2022-03-23 | Change temporary variable name if it would conflict | Noah Lev | -7/+4 |
| 2022-03-23 | Make `standalone` an enum | Noah Lev | -13/+25 |
| 2022-03-23 | Improve function names | Noah Lev | -2/+2 |
| 2022-03-23 | Improve handling of `tmp` variable name conflicts | Noah Lev | -2/+6 |
| 2022-03-23 | Emit both subexp and standalone sugg for postfix | Noah Lev | -28/+54 |
| 2022-03-23 | Emit structured suggestions for field accesses too | Noah Lev | -22/+11 |
| 2022-03-23 | Refactor, handle fields better, add field tests | Noah Lev | -10/+10 |
| 2022-03-23 | Reduce rightward drift | Noah Lev | -31/+30 |
| 2022-03-23 | Remove error recovery todos | Noah Lev | -15/+9 |
| 2022-03-23 | Move increment checks to improve errors | Noah Lev | -43/+185 |
| 2022-03-23 | Suggest `i += 1` when we see `i++` or `++i` | Camelid | -0/+43 |
| 2022-03-17 | Rollup merge of #94731 - TaKO8Ki:const-generic-expr-recovery, r=davidtwco,oli... | Dylan DPC | -22/+65 |
| 2022-03-15 | use `format_args_capture` in some parts of rustc_parse | Takayuki Maeda | -14/+14 |
| 2022-03-12 | Use consistent prose for `::` | Michael Howell | -1/+1 |
| 2022-03-11 | diagnostics: single colon within `<>` probably, not type ascription | Michael Howell | -0/+13 |
| 2022-03-10 | replace `self.clone()` with `self.create_snapshot_for_diagnostic()` | Takayuki Maeda | -22/+22 |
| 2022-03-10 | add doc comments | Takayuki Maeda | -3/+12 |
| 2022-03-09 | implement `SnapshotParser` struct | Takayuki Maeda | -3/+30 |
| 2022-03-09 | implement and use `diagnostic_snapshot` | Takayuki Maeda | -0/+7 |
| 2022-03-04 | Do not recover from `Ty?` in macro parsing | Esteban Kuber | -3/+3 |
| 2022-03-02 | rename ErrorReported -> ErrorGuaranteed | mark | -11/+11 |
| 2022-02-28 | Rollup merge of #94445 - c410-f3r:more-let-chains, r=cjgillot | Matthias Krüger | -39/+39 |
| 2022-02-28 | Tweak diagnostics | Esteban Kuber | -14/+39 |
| 2022-02-28 | 4 - Make more use of `let_chains` | Caio | -39/+39 |
| 2022-02-25 | Suggest {} around more bad const generic exprs | Michael Goulet | -16/+23 |
| 2022-02-23 | rustc_errors: let `DiagnosticBuilder::emit` return a "guarantee of emission". | Eduard-Mihai Burtescu | -10/+22 |
| 2022-02-23 | rustc_errors: take `self` by value in `DiagnosticBuilder::cancel`. | Eduard-Mihai Burtescu | -21/+18 |
| 2022-02-23 | Replace `&mut DiagnosticBuilder`, in signatures, with `&mut Diagnostic`. | Eduard-Mihai Burtescu | -6/+6 |
| 2022-02-03 | compiler: clippy::complexity fixes | Matthias Krüger | -4/+4 |
| 2022-01-27 | Improve suggestion for escaping reserved keywords | Noah Lev | -4/+4 |
| 2022-01-25 | delay the bug once again, generalize turbofish suggestion | Michael Goulet | -18/+12 |