| Age | Commit message (Expand) | Author | Lines |
| 2024-02-06 | Teach typeck/borrowck/solvers how to deal with async closures | Michael Goulet | -0/+8 |
| 2024-02-06 | Make async closures directly lower to ClosureKind::CoroutineClosure | Michael Goulet | -20/+7 |
| 2024-01-31 | Add async bound modifier to enable async Fn bounds | Michael Goulet | -0/+2 |
| 2024-01-28 | hir: Remove unnecessary `HirId` from `hir::Let` | Vadim Petrochenkov | -1/+0 |
| 2024-01-19 | Pack the u128 in LitKind::Int | Josh Stone | -2/+8 |
| 2024-01-16 | Async closures will move params into the future always | Michael Goulet | -24/+15 |
| 2024-01-13 | Add check for ui_testing via promoting parameters from `ParseSess` to `Session` | George-lewis | -2/+2 |
| 2024-01-05 | Remove `hir::Guard` | Matthew Jasper | -14/+1 |
| 2023-12-30 | Auto merge of #119284 - Nadrieril:fix-bodiless-arm-parse, r=cjgillot | bors | -3/+1 |
| 2023-12-28 | Merge Coroutine lowering functions | Arpad Borsos | -198/+68 |
| 2023-12-26 | Rollup merge of #119240 - compiler-errors:lang-item-more, r=petrochenkov | Michael Goulet | -6/+4 |
| 2023-12-26 | Don't drop a hir node after lowering | Nadrieril | -3/+1 |
| 2023-12-26 | Auto merge of #119258 - compiler-errors:closure-kind, r=eholk | bors | -27/+38 |
| 2023-12-26 | Make some non-diagnostic-affecting QPath::LangItem into regular qpaths | Michael Goulet | -6/+4 |
| 2023-12-25 | Only regular coroutines have movability | Michael Goulet | -8/+20 |
| 2023-12-25 | Make closures carry their own ClosureKind, rather than deducing what it is fr... | Michael Goulet | -23/+22 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -17/+16 |
| 2023-12-22 | Rollup merge of #119222 - eholk:into-async-iterator, r=compiler-errors,dtolnay | Michael Goulet | -1/+19 |
| 2023-12-22 | Split coroutine desugaring kind from source | Michael Goulet | -12/+23 |
| 2023-12-22 | Use `IntoAsyncIterator` in `for await` loop desugaring | Eric Holk | -1/+19 |
| 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 |