| Age | Commit message (Expand) | Author | Lines |
| 2023-12-04 | gate gen fn behind gen_blocks | Eric Holk | -0/+4 |
| 2023-12-04 | Lower return types for gen fn to impl Iterator | Eric Holk | -4/+0 |
| 2023-12-04 | Add genness to FnHeader | Eric Holk | -2/+4 |
| 2023-12-04 | Fix parser ICE when recovering `dyn`/`impl` after `for<...>` | sjwang05 | -10/+12 |
| 2023-12-04 | De-genericize some `IntoDiagnostic` impls. | Nicholas Nethercote | -5/+5 |
| 2023-12-03 | Detect attempts to expand a macro to a match arm again | Nadrieril | -29/+18 |
| 2023-12-03 | Parse a pattern with no arm | Nadrieril | -109/+137 |
| 2023-12-03 | Auto merge of #118542 - chenyukang:yukang-fix-parser-ice-118531, r=cjgillot | bors | -12/+4 |
| 2023-12-02 | Fix parser ICE from attrs | yukang | -12/+4 |
| 2023-12-02 | Auto merge of #118470 - nnethercote:cleanup-error-handlers, r=compiler-errors | bors | -42/+35 |
| 2023-12-02 | Use `Session::diagnostic` in more places. | Nicholas Nethercote | -40/+33 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -2/+2 |
| 2023-12-01 | Tweak unclosed generics errors | Esteban Küber | -10/+35 |
| 2023-12-01 | Auto merge of #117472 - jmillikin:stable-c-str-literals, r=Nilstrieb | bors | -3/+0 |
| 2023-11-29 | Avoid unnecessary pattern parse errors on `ref box` | Esteban Küber | -3/+3 |
| 2023-11-29 | Always emit help when failing to parse enum variant | Esteban Küber | -2/+7 |
| 2023-11-29 | review comment: rework `parse_for_head` to reduce branching | Esteban Küber | -36/+42 |
| 2023-11-29 | Change how `for (x in foo) {}` is handled | Esteban Küber | -57/+59 |
| 2023-11-29 | Account for `(pat if expr) => {}` | Esteban Küber | -39/+107 |
| 2023-11-29 | Change enum parse recovery | Esteban Küber | -8/+35 |
| 2023-11-29 | Bubble parse error when expecting `)` | Esteban Küber | -0/+3 |
| 2023-11-29 | More accurate span for unnecessary parens suggestion | Esteban Küber | -29/+11 |
| 2023-11-29 | When parsing patterns, bubble all errors except reserved idents that aren't l... | Esteban Küber | -1/+13 |
| 2023-11-29 | Make `parse_pat_ident` not recover bad name | Esteban Küber | -1/+1 |
| 2023-11-29 | Rollup merge of #118191 - estebank:let-chain-typo, r=compiler-errors | Matthias Krüger | -8/+70 |
| 2023-11-29 | Rollup merge of #118157 - Nadrieril:never_pat-feature-gate, r=compiler-errors | Matthias Krüger | -1/+5 |
| 2023-11-29 | Rollup merge of #118394 - nnethercote:rm-hir-Ops, r=cjgillot | Matthias Krüger | -2/+2 |
| 2023-11-29 | Add `never_patterns` feature gate | Nadrieril | -1/+5 |
| 2023-11-28 | Suggest `let` or `==` on typo'd let-chain | Esteban Küber | -8/+70 |
| 2023-11-27 | Rollup merge of #111133 - hkmatsumoto:handle-python-slicing, r=TaKO8Ki | Michael Goulet | -11/+28 |
| 2023-11-28 | Rename `BinOpKind::lazy` as `BinOpKind::is_lazy`. | Nicholas Nethercote | -1/+1 |
| 2023-11-28 | Rework `ast::BinOpKind::to_string` and `ast::UnOp::to_string`. | Nicholas Nethercote | -1/+1 |
| 2023-11-27 | Change help message to make some sense in broader context | Hirochika Matsumoto | -1/+1 |
| 2023-11-27 | Address review feedbacks | Hirochika Matsumoto | -16/+17 |
| 2023-11-27 | Make tidy test happy | Hirochika Matsumoto | -1/+1 |
| 2023-11-27 | Detect Python-like slicing and suggest how to fix | Hirochika Matsumoto | -0/+16 |
| 2023-11-27 | Suggest swapping the order of `ref` and `box` | Hirochika Matsumoto | -2/+19 |
| 2023-11-26 | Use `rustc_fluent_macro::fluent_messages!` directly. | Nicholas Nethercote | -2/+1 |
| 2023-11-26 | Avoid need for `{D,Subd}iagnosticMessage` imports. | Nicholas Nethercote | -1/+0 |
| 2023-11-24 | Add `Span` to `TraitBoundModifier` | Deadbeef | -1/+1 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -20/+20 |
| 2023-11-19 | Rollup merge of #117988 - estebank:issue-106020, r=cjgillot | Michael Goulet | -0/+110 |
| 2023-11-19 | Rollup merge of #117891 - compiler-errors:recover-for-dyn, r=davidtwco | Michael Goulet | -3/+60 |
| 2023-11-19 | Don't sort `span_suggestions`, leave that to caller | Esteban Küber | -0/+1 |
| 2023-11-17 | Auto merge of #114292 - estebank:issue-71039, r=b-naber | bors | -27/+83 |
| 2023-11-17 | Rollup merge of #117990 - estebank:issue-100825-part-deux, r=Nilstrieb | Matthias Krüger | -9/+8 |
| 2023-11-17 | Rollup merge of #117892 - estebank:fat-arrow-typo, r=compiler-errors | Matthias Krüger | -9/+10 |
| 2023-11-16 | Fix code indentation | Esteban Küber | -2/+2 |
| 2023-11-16 | Handle attempts to have multiple `cfg`d tail expressions | Esteban Küber | -0/+110 |
| 2023-11-16 | Smaller span for unnessary `mut` suggestion | Esteban Küber | -7/+6 |