| Age | Commit message (Expand) | Author | Lines |
| 2024-04-24 | Error on using `yield` without also using `#[coroutine]` on the closure | Oli Scherer | -0/+5 |
| 2024-04-24 | Add explicit syntax for coroutines instead of relying on closures having `yie... | Oli Scherer | -1/+11 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -7/+4 |
| 2024-04-16 | Avoid lots of `hir::HirId{,Map,Set}` qualifiers. | Nicholas Nethercote | -5/+6 |
| 2024-03-22 | Rollup merge of #121619 - RossSmyth:pfix_match, r=petrochenkov | Matthias Krüger | -2/+5 |
| 2024-03-20 | Rename `hir::Let` into `hir::LetExpr` | Guillaume Gomez | -1/+1 |
| 2024-03-06 | Rollup merge of #121382 - nnethercote:rework-untranslatable_diagnostic-lint, ... | Matthias Krüger | -0/+1 |
| 2024-03-06 | Add postfix match MatchSource to HIR | Ross Smyth | -2/+5 |
| 2024-03-06 | Add MatchKind member to the Match expr for pretty printing & fmt | Ross Smyth | -1/+1 |
| 2024-03-06 | Rewrite the `untranslatable_diagnostic` lint. | Nicholas Nethercote | -0/+1 |
| 2024-03-05 | Rollup merge of #121664 - compiler-errors:adjust-error-yield-lowering, r=spas... | Matthias Krüger | -9/+43 |
| 2024-03-05 | Rename all `ParseSess` variables/fields/lifetimes as `psess`. | Nicholas Nethercote | -8/+4 |
| 2024-02-27 | Adjust error yield/await lowering | Michael Goulet | -9/+43 |
| 2024-02-25 | Add `ErrorGuaranteed` to `ast::ExprKind::Err` | Lieselotte | -3/+1 |
| 2024-02-25 | Add `ast::ExprKind::Dummy` | Lieselotte | -0/+6 |
| 2024-02-15 | Rollup merge of #121120 - nnethercote:LitKind-Err-guar, r=fmease | Guillaume Gomez | -2/+7 |
| 2024-02-15 | Add `ErrorGuaranteed` to `ast::LitKind::Err`, `token::LitKind::Err`. | Nicholas Nethercote | -2/+7 |
| 2024-02-15 | Reinstate some delayed bugs. | Nicholas Nethercote | -1/+3 |
| 2024-02-14 | Use fewer delayed bugs. | Nicholas Nethercote | -3/+1 |
| 2024-02-07 | No need to take ImplTraitContext by ref | Michael Goulet | -9/+9 |
| 2024-02-06 | Auto merge of #120361 - compiler-errors:async-closures, r=oli-obk | bors | -20/+18 |
| 2024-02-06 | More comments, final tweaks | Michael Goulet | -0/+3 |
| 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 |