| Age | Commit message (Expand) | Author | Lines |
| 2024-04-15 | Validation and other things | Michael Goulet | -2/+11 |
| 2024-04-15 | Lower and resolve precise captures in HIR | Michael Goulet | -0/+25 |
| 2024-04-11 | Call lower_const_param instead of duplicating the code | Santiago Pastorino | -0/+5 |
| 2024-04-09 | Actually, just reuse the UNUSED_LIFETIMES lint | Michael Goulet | -26/+0 |
| 2024-04-04 | cache type info for ParamEnv | Lukas Markeffsky | -7/+4 |
| 2024-04-02 | Don't create an FnDef of a DefKind::Variant, use the ctor def id | Michael Goulet | -2/+2 |
| 2024-03-30 | Stop calling visitors V | Michael Goulet | -3/+5 |
| 2024-03-25 | Rollup merge of #122881 - Bryanskiy:delegation-fixes-2, r=petrochenkov | Matthias Krüger | -1/+9 |
| 2024-03-22 | Split out ImplPolarity and PredicatePolarity | Michael Goulet | -2/+2 |
| 2024-03-22 | Delegation: fix ICE on `bound_vars` divergence | Bryanskiy | -1/+9 |
| 2024-03-22 | Rename module astconv to hir_ty_lowering | León Orell Valerian Liehr | -2/+2 |
| 2024-03-22 | Update local variables and tracing calls | León Orell Valerian Liehr | -20/+19 |
| 2024-03-22 | Update (doc) comments | León Orell Valerian Liehr | -18/+19 |
| 2024-03-22 | Rename AstConv to HIR ty lowering | León Orell Valerian Liehr | -37/+37 |
| 2024-03-21 | Rollup merge of #122799 - estebank:issue-122569, r=fee1-dead | Matthias Krüger | -3/+3 |
| 2024-03-21 | Replace closures with `_` when suggesting fully qualified path for method call | Esteban Küber | -3/+3 |
| 2024-03-20 | Split item bounds and item super predicates | Michael Goulet | -5/+49 |
| 2024-03-19 | Rollup merge of #122719 - oli-obk:nested_static_feed_hir, r=fee1-dead | Matthias Krüger | -1/+1 |
| 2024-03-19 | The AssocOpaqueTy HIR node is not actually needed to differentiate from other... | Oli Scherer | -1/+1 |
| 2024-03-18 | Use `hir::Node` helper methods instead of repeat the same impl multiple times | Oli Scherer | -89/+20 |
| 2024-03-15 | Rollup merge of #122513 - petrochenkov:somehir4, r=fmease | Guillaume Gomez | -7/+4 |
| 2024-03-15 | Rollup merge of #122527 - fmease:clean-up-hir-ty-lowering, r=compiler-errors | Matthias Krüger | -2/+1 |
| 2024-03-15 | Clean up AstConv | León Orell Valerian Liehr | -2/+1 |
| 2024-03-14 | hir: Remove `opt_local_def_id_to_hir_id` and `opt_hir_node_by_def_id` | Vadim Petrochenkov | -7/+4 |
| 2024-03-14 | Auto merge of #120943 - petrochenkov:somehir3, r=oli-obk | bors | -0/+1 |
| 2024-03-13 | Create some minimal HIR for associated opaque types | Vadim Petrochenkov | -0/+1 |
| 2024-03-11 | Revert "Auto merge of #122140 - oli-obk:track_errors13, r=davidtwco" | Oli Scherer | -3/+5 |
| 2024-03-11 | Auto merge of #122338 - workingjubilee:rollup-xzpt4v4, r=workingjubilee | bors | -31/+0 |
| 2024-03-11 | Rollup merge of #119385 - fmease:assoc-const-eq-fixes-2, r=oli-obk,cjgillot | Jubilee | -31/+0 |
| 2024-03-11 | Never bail out early while running all the type check queries | Oli Scherer | -5/+3 |
| 2024-03-08 | Rollup merge of #122100 - compiler-errors:better-capture, r=oli-obk | Matthias Krüger | -28/+40 |
| 2024-03-08 | Improve error message for opaque captures | Michael Goulet | -28/+40 |
| 2024-03-08 | Rollup merge of #121563 - Jarcho:use_cf, r=petrochenkov | Matthias Krüger | -22/+16 |
| 2024-03-08 | Rename some functions to represent their generalized behavior | Michael Goulet | -1/+1 |
| 2024-03-08 | Make TAITs capture all higher-ranked lifetimes in scope | Michael Goulet | -53/+7 |
| 2024-03-06 | Rollup merge of #122027 - compiler-errors:rpitit-cycle, r=spastorino | Matthias Krüger | -15/+61 |
| 2024-03-05 | Use `ControlFlow` in HIR visitors | Jason Newcomb | -22/+16 |
| 2024-03-06 | Auto merge of #122041 - matthiaskrgr:rollup-imsmdke, r=matthiaskrgr | bors | -20/+8 |
| 2024-03-05 | Convert `TypeVisitor` and `DefIdVisitor` to use `VisitorResult` | Jason Newcomb | -9/+4 |
| 2024-03-05 | Move visitor utils to `rustc_ast_ir` | Jason Newcomb | -1/+1 |
| 2024-03-05 | Merge `impl_trait_in_assoc_types_defined_by` query back into `opaque_types_de... | Oli Scherer | -20/+8 |
| 2024-03-05 | Uplift some feeding out of associated_type_for_impl_trait_in_impl and into qu... | Michael Goulet | -15/+61 |
| 2024-03-03 | Add a proper `with_no_queries` to printing | John Kåre Alsaker | -1/+1 |
| 2024-02-29 | Overhaul how stashed diagnostics work, again. | Nicholas Nethercote | -13/+9 |
| 2024-02-28 | Rename `DiagnosticBuilder` as `Diag`. | Nicholas Nethercote | -7/+6 |
| 2024-02-26 | Revert some `span_bug`s to `span_delayed_bug`. | Nicholas Nethercote | -1/+1 |
| 2024-02-25 | Rollup merge of #121409 - compiler-errors:atb-cycle, r=cjgillot | Matthias Krüger | -8/+22 |
| 2024-02-23 | Rollup merge of #121434 - nnethercote:fix-121208-fallout, r=lcnr | Matthias Krüger | -1/+1 |
| 2024-02-23 | Revert some `span_bug`s to `span_delayed_bug`. | Nicholas Nethercote | -1/+1 |
| 2024-02-22 | Rollup merge of #121386 - oli-obk:no_higher_ranked_opaques, r=lcnr | Matthias Krüger | -18/+25 |