| Age | Commit message (Expand) | Author | Lines |
| 2023-12-22 | Auto merge of #118847 - eholk:for-await, r=compiler-errors | bors | -30/+95 |
| 2023-12-19 | Desugar for await loops | Eric Holk | -28/+92 |
| 2023-12-19 | Plumb awaitness of for loops | Eric Holk | -4/+5 |
| 2023-12-18 | Ensure `yield` expressions desugar correctly in async generators | Michael Goulet | -20/+32 |
| 2023-12-15 | NFC don't convert types to identical types | Matthias Krüger | -3/+1 |
| 2023-12-13 | Rollup merge of #118759 - compiler-errors:bare-unit-structs, r=petrochenkov | Matthias Krüger | -0/+2 |
| 2023-12-12 | Correctly gate the parsing of match arms without body | Nadrieril | -2/+5 |
| 2023-12-10 | remove redundant imports | surechen | -1/+0 |
| 2023-12-09 | Lower some forgotten coroutine spans | Michael Goulet | -2/+2 |
| 2023-12-08 | Support bare unit structs in destructuring assignments | Michael Goulet | -0/+2 |
| 2023-12-08 | Auto merge of #118420 - compiler-errors:async-gen, r=eholk | bors | -22/+139 |
| 2023-12-08 | Support async gen fn | Michael Goulet | -7/+9 |
| 2023-12-08 | coro_kind -> coroutine_kind | Michael Goulet | -2/+2 |
| 2023-12-08 | Implement `async gen` blocks | Michael Goulet | -13/+128 |
| 2023-12-08 | Auto merge of #118527 - Nadrieril:never_patterns_parse, r=compiler-errors | bors | -10/+40 |
| 2023-12-04 | Option<CoroutineKind> | Eric Holk | -17/+8 |
| 2023-12-04 | Merge Async and Gen into CoroutineKind | Eric Holk | -31/+40 |
| 2023-12-03 | rustc: Harmonize `DefKind` and `DefPathData` | Vadim Petrochenkov | -3/+2 |
| 2023-12-03 | Disallow arm bodies on never patterns | Nadrieril | -8/+13 |
| 2023-12-03 | Disallow guards on never patterns | Nadrieril | -2/+5 |
| 2023-12-03 | Disallow an arm without a body (except for never patterns) | Nadrieril | -3/+10 |
| 2023-12-03 | Parse a pattern with no arm | Nadrieril | -7/+22 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -2/+2 |
| 2023-11-29 | Auto merge of #118433 - matthiaskrgr:rollup-fi9lrwg, r=matthiaskrgr | bors | -36/+13 |
| 2023-11-29 | Rollup merge of #118401 - nnethercote:rustc_ast_lowering, r=compiler-errors | Matthias Krüger | -9/+12 |
| 2023-11-29 | Rollup merge of #118419 - compiler-errors:await-span2, r=cjgillot | Matthias Krüger | -12/+11 |
| 2023-11-29 | Rollup merge of #118394 - nnethercote:rm-hir-Ops, r=cjgillot | Matthias Krüger | -24/+2 |
| 2023-11-28 | Fix spans for bad await in inline const | Michael Goulet | -10/+9 |
| 2023-11-28 | Eagerly return ExprKind::Err on yield/await in wrong coroutine context | Michael Goulet | -3/+3 |
| 2023-11-28 | resolve: Feed the `def_kind` query immediately on `DefId` creation | Vadim Petrochenkov | -2/+8 |
| 2023-11-28 | Remove unnecessary `Option` from `LoweringContext::allow_{try_trait,gen_futur... | Nicholas Nethercote | -9/+12 |
| 2023-11-28 | Remove `hir::BinOp`, `hir::BinOpKind`, and `hir::UnOp`. | Nicholas Nethercote | -24/+2 |
| 2023-11-25 | Remove HirId from QPath::LangItem | Michael Goulet | -39/+11 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -4/+4 |
| 2023-11-17 | Rollup merge of #117549 - DaniPopes:more-copied, r=b-naber | Matthias Krüger | -2/+1 |
| 2023-11-13 | Compute layout with spans for better cycle errors in coroutines | Michael Goulet | -2/+5 |
| 2023-11-03 | compiler: use `copied` instead of manual `map` | DaniPopes | -2/+1 |
| 2023-11-02 | Minimize `pub` usage in `source_map.rs`. | Nicholas Nethercote | -1/+2 |
| 2023-10-30 | Some more coroutine renamings | Michael Goulet | -4/+4 |
| 2023-10-27 | Prevent generators from being movable | Oli Scherer | -1/+1 |
| 2023-10-27 | Feature gate coroutine `yield` usage | Oli Scherer | -2/+12 |
| 2023-10-27 | Add gen blocks to ast and do some broken ast lowering | Oli Scherer | -1/+60 |
| 2023-10-26 | Add hir::GeneratorKind::Gen | Oli Scherer | -3/+4 |
| 2023-10-25 | Rename `AsyncCoroutineKind` to `CoroutineSource` | Oli Scherer | -3/+3 |
| 2023-10-20 | Rename `CoroutineKind::Gen` to `::Coroutine` | Oli Scherer | -4/+4 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -16/+16 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -18/+18 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -5/+15 |
| 2023-09-11 | Move let expression checking to parsing | Matthew Jasper | -2/+4 |
| 2023-08-14 | Move scrutinee `HirId` into `MatchSource::TryDesugar` | Esteban Küber | -1/+1 |