| Age | Commit message (Expand) | Author | Lines |
| 2023-12-13 | Rename the `span` args to `emit_unescape_error`. | Nicholas Nethercote | -33/+42 |
| 2023-12-12 | Actually parse async gen blocks correctly | Michael Goulet | -9/+18 |
| 2023-12-12 | Rollup merge of #118868 - Nadrieril:correctly-gate-never_patterns-parsing, r=... | Matthias Krüger | -1/+9 |
| 2023-12-12 | Don't gate the feature twice | Nadrieril | -1/+4 |
| 2023-12-12 | Correctly gate the parsing of match arms without body | Nadrieril | -1/+6 |
| 2023-12-12 | Improve an error involving attribute values. | Nicholas Nethercote | -22/+38 |
| 2023-12-11 | Add spacing information to delimiters. | Nicholas Nethercote | -59/+81 |
| 2023-12-11 | Improve `print_tts` by changing `tokenstream::Spacing`. | Nicholas Nethercote | -7/+19 |
| 2023-12-10 | remove redundant imports | surechen | -8/+1 |
| 2023-12-08 | Auto merge of #118420 - compiler-errors:async-gen, r=eholk | bors | -77/+85 |
| 2023-12-08 | Support async gen fn | Michael Goulet | -65/+66 |
| 2023-12-08 | coro_kind -> coroutine_kind | Michael Goulet | -6/+6 |
| 2023-12-08 | Implement `async gen` blocks | Michael Goulet | -11/+18 |
| 2023-12-08 | Auto merge of #118527 - Nadrieril:never_patterns_parse, r=compiler-errors | bors | -138/+155 |
| 2023-12-07 | Rollup merge of #116420 - bvanjoi:fix-116203, r=Nilstrieb | Matthias Krüger | -2/+4 |
| 2023-12-06 | Auto merge of #118655 - compiler-errors:rollup-vrngyzn, r=compiler-errors | bors | -15/+17 |
| 2023-12-05 | Rollup merge of #118587 - nnethercote:cleanup-error-handlers-2, r=compiler-er... | Michael Goulet | -5/+5 |
| 2023-12-05 | Rollup merge of #118585 - sjwang05:issue-118564, r=compiler-errors | Michael Goulet | -10/+12 |
| 2023-12-05 | Auto merge of #118457 - eholk:genfn, r=compiler-errors | bors | -25/+64 |
| 2023-12-05 | Rollup merge of #117922 - estebank:unclosed-generics, r=b-naber | Matthias Krüger | -10/+35 |
| 2023-12-04 | Address code review feedback | Eric Holk | -2/+2 |
| 2023-12-04 | Option<CoroutineKind> | Eric Holk | -27/+27 |
| 2023-12-04 | Merge Async and Gen into CoroutineKind | Eric Holk | -25/+47 |
| 2023-12-04 | Make async gen fn an error | Eric Holk | -0/+15 |
| 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 |