| Age | Commit message (Expand) | Author | Lines |
| 2022-07-11 | add tests for async await | Ding Xiang Fei | -3/+2 |
| 2022-07-11 | move else block into the `Local` struct | Ding Xiang Fei | -10/+8 |
| 2022-07-11 | lower let-else in MIR instead | Ding Xiang Fei | -7/+15 |
| 2022-07-09 | Rollup merge of #99043 - compiler-errors:derive-nit, r=cjgillot | Dylan DPC | -24/+4 |
| 2022-07-08 | Collapse some weirdly-wrapping derives | Michael Goulet | -24/+4 |
| 2022-07-08 | Implement IntoDiagnosticArg for hir::ConstContext | Michael Goulet | -0/+3 |
| 2022-07-07 | Auto merge of #99024 - matthiaskrgr:rollup-8ygpcpg, r=matthiaskrgr | bors | -2/+2 |
| 2022-07-07 | Reword comments and rename HIR visiting methods. | Camille GILLOT | -2/+2 |
| 2022-07-06 | Make AST lowering a query. | Camille GILLOT | -1/+5 |
| 2022-07-01 | Factor out hir::Node::Binding | Cameron Steffen | -2/+0 |
| 2022-06-28 | Auto merge of #98222 - cjgillot:single-wf, r=michaelwoerister | bors | -34/+0 |
| 2022-06-22 | Auto merge of #98279 - cjgillot:all-fresh-nofn, r=petrochenkov | bors | -5/+11 |
| 2022-06-21 | Only keep a single well-formed query. | Camille GILLOT | -34/+0 |
| 2022-06-21 | Use CreateParameter mode for closures too. | Camille GILLOT | -2/+7 |
| 2022-06-21 | Always create parameters for functions-like types. | Camille GILLOT | -2/+1 |
| 2022-06-19 | Leave the responsibility to create `Fresh` lifetimes to lowering. | Camille GILLOT | -1/+3 |
| 2022-06-19 | Rollup merge of #98165 - WaffleLapkin:once_things_renamings, r=m-ou-se | Matthias Krüger | -4/+4 |
| 2022-06-18 | Auto merge of #98153 - nnethercote:fix-MissingDoc-quadratic-behaviour, r=cjgi... | bors | -1/+1 |
| 2022-06-17 | Auto merge of #98106 - cjgillot:split-definitions, r=michaelwoerister | bors | -52/+46 |
| 2022-06-16 | Move/rename `lazy::Sync{OnceCell,Lazy}` to `sync::{Once,Lazy}Lock` | Maybe Waffle | -4/+4 |
| 2022-06-16 | Remove unused `hir_id` arg from `visit_attribute`. | Nicholas Nethercote | -1/+1 |
| 2022-06-15 | Rollup merge of #98110 - cjgillot:closure-brace, r=Aaron1011 | Yuki Okushi | -13/+18 |
| 2022-06-14 | Separate `source_span` and `expn_that_defined` from `Definitions`. | Camille GILLOT | -51/+5 |
| 2022-06-14 | Make ResolverAstLowering a struct. | Camille GILLOT | -1/+41 |
| 2022-06-11 | Address comments | Michael Goulet | -9/+4 |
| 2022-06-11 | Handle empty where-clause better | Michael Goulet | -10/+16 |
| 2022-06-12 | Make `ExprKind::Closure` a struct variant. | Camille GILLOT | -13/+18 |
| 2022-06-11 | feat(fix): update some links | kyoto7250 | -2/+2 |
| 2022-06-07 | Don't suggest adding let in certain if conditions | Michael Goulet | -0/+14 |
| 2022-06-06 | Rollup merge of #97312 - cjgillot:no-path-in-scope, r=compiler-errors | Dylan DPC | -0/+2 |
| 2022-06-06 | Rollup merge of #97683 - cjgillot:no-apit-hrtb, r=nagisa | Matthias Krüger | -1/+1 |
| 2022-06-04 | Compute lifetimes in scope at diagnostic time. | Camille GILLOT | -0/+2 |
| 2022-06-03 | Make hir().get_generics and generics_of consistent. | Camille GILLOT | -12/+9 |
| 2022-06-03 | Fail gracefully when encountering an HRTB in APIT. | Camille GILLOT | -1/+1 |
| 2022-06-03 | Manipulate lifetimes by LocalDefId for region resolution. | Camille GILLOT | -24/+36 |
| 2022-06-02 | Rollup merge of #97023 - cjgillot:uniform-anon, r=estebank | Dylan DPC | -0/+11 |
| 2022-05-31 | Apply track_caller to closure on `expect_non_local()` | Yuki Okushi | -1/+5 |
| 2022-05-30 | Default methods of traits are also AssocFn defs as they essentially desugar t... | Oli Scherer | -0/+1 |
| 2022-05-29 | Make lifetime errors more precise in the presence of `Fresh` lifetimes. | Camille GILLOT | -0/+11 |
| 2022-05-22 | Lifetime variance fixes for rustdoc | Michael Goulet | -4/+4 |
| 2022-05-22 | factor out the rvalue lifetime rule | Ding Xiang Fei | -1/+1 |
| 2022-05-21 | Rollup merge of #97223 - cjgillot:linear-hir-tree, r=jackh726 | Guillaume Gomez | -1/+12 |
| 2022-05-21 | Auto merge of #97239 - jhpratt:remove-crate-vis, r=joshtriplett | bors | -2/+1 |
| 2022-05-20 | Remove `crate` visibility usage in compiler | Jacob Pratt | -2/+1 |
| 2022-05-20 | Auto merge of #95418 - cjgillot:more-disk, r=davidtwco | bors | -4/+4 |
| 2022-05-20 | Remove quadratic behaviour from -Zunpretty=hir-tree. | Camille GILLOT | -1/+12 |
| 2022-05-19 | Update IfLet syntax | Eric Holk | -1/+1 |
| 2022-05-19 | Borrow guard patterns for the body of the guard | Eric Holk | -0/+14 |
| 2022-05-18 | Auto merge of #96863 - SparrowLii:let, r=michaelwoerister | bors | -5/+3 |
| 2022-05-13 | rename visit item-like methods | Miguel Guarniz | -1/+1 |