| Age | Commit message (Expand) | Author | Lines |
| 2024-11-15 | Make WalkItemKind::walk signature compatible between Visitor versions | maxcabrajac | -1/+1 |
| 2024-11-15 | Add WalkItemKind::Ctxt so AssocCtxt is not sent to non-Assoc ItemKinds | maxcabrajac | -1/+1 |
| 2024-11-14 | Remove `Resolver::empty_disambiguator`. | Nicholas Nethercote | -6/+0 |
| 2024-11-14 | Replace the `restricted_shadowing` boolean argument with an enum. | Nicholas Nethercote | -12/+22 |
| 2024-11-14 | Move a call outside a loop. | Nicholas Nethercote | -1/+1 |
| 2024-11-14 | Remove two `_ext` methods. | Nicholas Nethercote | -56/+13 |
| 2024-11-14 | Use an atom comparison for a keyword check. | Nicholas Nethercote | -1/+3 |
| 2024-11-14 | Use `for_each_child` in a suitable place. | Nicholas Nethercote | -7/+5 |
| 2024-11-14 | Tweak a `resolutions` loop. | Nicholas Nethercote | -6/+5 |
| 2024-11-13 | Use iteration instead of indexing to access ribs. | Nicholas Nethercote | -6/+5 |
| 2024-11-12 | Rollup merge of #132653 - BoxyUwU:const_arg_stmt_mac_call, r=compiler-errors | Matthias Krüger | -19/+10 |
| 2024-11-08 | use verbose for path separator suggestion | Michael Goulet | -1/+1 |
| 2024-11-05 | Rollup merge of #132567 - estebank:bad-suggestion, r=Nadrieril | Matthias Krüger | -10/+36 |
| 2024-11-05 | Check for both `StmtKind::MacCall` and `ExprKind::MacCall` | Boxy | -19/+10 |
| 2024-11-03 | Properly suggest `E::assoc` when we encounter `E::Variant::assoc` | Esteban Küber | -10/+36 |
| 2024-11-02 | Suggest fixing typos and let bindings at the same time | uellenberg | -3/+6 |
| 2024-10-30 | Review comments. | Camille GILLOT | -1/+1 |
| 2024-10-30 | Remap impl-trait lifetimes on HIR instead of AST lowering. | Camille GILLOT | -39/+1 |
| 2024-10-29 | Rollup merge of #131375 - klensy:clone_on_ref_ptr, r=cjgillot | Jubilee | -4/+4 |
| 2024-10-28 | fix clippy::clone_on_ref_ptr for compiler | klensy | -4/+4 |
| 2024-10-26 | expand: Stop using artificial `ast::Item` for macros loaded from metadata | Vadim Petrochenkov | -18/+32 |
| 2024-10-24 | Pass Ident by reference in ast Visitor | maxcabrajac | -3/+3 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -12/+12 |
| 2024-10-22 | terminology: #[feature] *enables* a feature (instead of "declaring" or "activ... | Ralf Jung | -4/+2 |
| 2024-10-20 | Stop relying on hashmap iteration for unused macro rules arms | Noratrieb | -14/+27 |
| 2024-10-18 | Fix #131471, range misleading field access | Falco Hirschenberger | -0/+1 |
| 2024-10-16 | compiler: use `is_none_or` where it is clearly better | Jubilee Young | -2/+2 |
| 2024-10-15 | Auto merge of #131723 - matthiaskrgr:rollup-krcslig, r=matthiaskrgr | bors | -18/+19 |
| 2024-10-15 | Rollup merge of #130635 - eholk:pin-reborrow-sugar, r=compiler-errors | Matthias Krüger | -3/+3 |
| 2024-10-14 | Move trait bound modifiers into ast::PolyTraitRef | Michael Goulet | -18/+19 |
| 2024-10-11 | Auto merge of #131045 - compiler-errors:remove-unnamed_fields, r=wesleywiser | bors | -41/+0 |
| 2024-10-07 | Add sugar for &pin (const|mut) types | Eric Holk | -3/+3 |
| 2024-10-07 | Auto merge of #131235 - codemountains:rename-nestedmetaitem-to-metaitemlnner,... | bors | -13/+14 |
| 2024-10-07 | Rename nested_meta to meta_item_inner | codemountains | -10/+12 |
| 2024-10-06 | Rename NestedMetaItem to MetaItemInner | codemountains | -3/+2 |
| 2024-10-06 | Auto merge of #131259 - ismailarilik:handle-potential-query-instability-lint-... | bors | -3/+3 |
| 2024-10-06 | Handle `librustdoc` cases of `rustc::potential_query_instability` lint | ismailarilik | -3/+3 |
| 2024-10-06 | On function and method calls in patterns, link to the book | Esteban Küber | -0/+13 |
| 2024-10-03 | rustdoc: prevent ctors from resolving | Michael Howell | -1/+3 |
| 2024-10-03 | Handle `rustc_metadata` cases of `rustc::potential_query_instability` lint | ismailarilik | -2/+2 |
| 2024-10-02 | Handle `rustc-hir-analysis` cases of `rustc::potential_query_instability` lint | ismailarilik | -1/+1 |
| 2024-10-01 | Remove anon struct and union types | Michael Goulet | -41/+0 |
| 2024-09-29 | cleanup: don't clone types that are Copy | Matthias Krüger | -5/+1 |
| 2024-09-24 | Separate collection of crate-local inherent impls from error reporting | Michael Goulet | -2/+4 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -207/+170 |
| 2024-09-22 | Auto merge of #130337 - BoxyUwU:anon_const_macro_call, r=camelid | bors | -20/+93 |
| 2024-09-21 | Handle macro calls in anon const def creation take 2 | Boxy | -20/+93 |
| 2024-09-20 | Flesh out some TODOs | Michael Goulet | -1/+3 |
| 2024-09-20 | Implement RTN in resolve_bound_vars and HIR ty lowering | Michael Goulet | -0/+1 |
| 2024-09-20 | Resolve RTN for TyKind::Path ending in (..) | Michael Goulet | -7/+26 |