| Age | Commit message (Expand) | Author | Lines |
| 2024-12-23 | Use `#[derive(Default)]` instead of manually implementing it | Esteban Küber | -16/+3 |
| 2024-12-21 | Rollup merge of #133782 - dtolnay:closuresjumps, r=spastorino,traviscross | Matthias Krüger | -3/+8 |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -2/+1 |
| 2024-12-16 | Rollup merge of #134284 - estebank:issue-74863, r=lcnr | Matthias Krüger | -0/+2 |
| 2024-12-15 | Remove some leftover dead code | Jonathan Dönszelmann | -55/+2 |
| 2024-12-15 | Add hir::Attribute | Jonathan Dönszelmann | -8/+4 |
| 2024-12-15 | Rename `value` field to `expr` to simplify later commits' diffs | Oli Scherer | -5/+5 |
| 2024-12-13 | Keep track of patterns that could have introduced a binding, but didn't | Esteban Küber | -0/+2 |
| 2024-12-13 | Rollup merge of #134140 - compiler-errors:unsafe-binders-ast, r=oli-obk | Matthias Krüger | -1/+28 |
| 2024-12-12 | Add unwrap_unsafe_binder and wrap_unsafe_binder macro operators | Michael Goulet | -1/+20 |
| 2024-12-12 | Parsing unsafe binders | Michael Goulet | -0/+8 |
| 2024-12-10 | Keep track of parse errors in `mod`s and don't emit resolve errors for paths ... | Esteban Küber | -1/+1 |
| 2024-12-09 | Introduce `default_field_values` feature | Esteban Küber | -0/+1 |
| 2024-12-08 | Rollup merge of #133424 - Nadrieril:guard-patterns-parsing, r=fee1-dead | Matthias Krüger | -3/+8 |
| 2024-12-04 | Fix suggestion when shorthand self has erroneous type | Michael Goulet | -0/+12 |
| 2024-12-02 | Never parenthesize `continue` | David Tolnay | -1/+1 |
| 2024-12-02 | Raise precedence of closure that has explicit return type | David Tolnay | -2/+8 |
| 2024-12-02 | Squash closures and jumps into a single precedence level | David Tolnay | -2/+1 |
| 2024-12-02 | Rollup merge of #133746 - oli-obk:push-xwyrylxmrtvq, r=jieyouxu | Guillaume Gomez | -15/+36 |
| 2024-12-02 | Deduplicate some matches that always panic in one arm | Oli Scherer | -4/+19 |
| 2024-12-02 | Add a helper method for extracting spans from AttrArgsEq | Oli Scherer | -4/+10 |
| 2024-12-02 | Change `AttrArgs::Eq` into a struct variant | Oli Scherer | -11/+11 |
| 2024-11-30 | Eliminate magic numbers from expression precedence | David Tolnay | -12/+10 |
| 2024-11-28 | always create `DefId`s when lowering anon-consts | lcnr | -3/+4 |
| 2024-11-26 | Rollup merge of #133140 - dtolnay:precedence, r=fmease | Michael Goulet | -46/+66 |
| 2024-11-25 | Refactor `where` predicates, and reserve for attributes support | Frank King | -14/+9 |
| 2024-11-24 | add guard pattern AST node | Max Niederman | -3/+8 |
| 2024-11-21 | Implement the unsafe-fields RFC. | Luca Versari | -0/+1 |
| 2024-11-17 | Inline ExprPrecedence::order into Expr::precedence | David Tolnay | -46/+66 |
| 2024-11-05 | Check for both `StmtKind::MacCall` and `ExprKind::MacCall` | Boxy | -4/+31 |
| 2024-11-02 | Do not format generic consts | Michael Goulet | -0/+6 |
| 2024-10-31 | Improve the missing_abi lint. | Mara Bos | -0/+2 |
| 2024-10-22 | Represent TraitBoundModifiers as distinct parts in HIR | Michael Goulet | -2/+2 |
| 2024-10-15 | Auto merge of #131723 - matthiaskrgr:rollup-krcslig, r=matthiaskrgr | bors | -5/+16 |
| 2024-10-15 | Rollup merge of #130635 - eholk:pin-reborrow-sugar, r=compiler-errors | Matthias Krüger | -2/+9 |
| 2024-10-14 | Move trait bound modifiers into ast::PolyTraitRef | Michael Goulet | -5/+16 |
| 2024-10-11 | Auto merge of #131045 - compiler-errors:remove-unnamed_fields, r=wesleywiser | bors | -8/+0 |
| 2024-10-07 | Add sugar for &pin (const|mut) types | Eric Holk | -2/+9 |
| 2024-10-07 | Auto merge of #131235 - codemountains:rename-nestedmetaitem-to-metaitemlnner,... | bors | -2/+2 |
| 2024-10-06 | various fixes for `naked_asm!` implementation | Folkert de Vries | -2/+10 |
| 2024-10-06 | disallow `asm!` in `#[naked]` functions | Folkert de Vries | -1/+19 |
| 2024-10-06 | Rename NestedMetaItem to MetaItemInner | codemountains | -2/+2 |
| 2024-10-01 | Remove anon struct and union types | Michael Goulet | -8/+0 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -7/+7 |
| 2024-09-21 | Handle macro calls in anon const def creation take 2 | Boxy | -5/+6 |
| 2024-09-17 | Rollup merge of #130314 - compiler-errors:mac-prec, r=davidtwco | Matthias Krüger | -5/+6 |
| 2024-09-13 | Use the same precedence for all macro-like exprs | Michael Goulet | -5/+6 |
| 2024-09-12 | Fix anon const def-creation when macros are involved | Noah Lev | -8/+12 |
| 2024-09-12 | Rollup merge of #130252 - compiler-errors:const-gen, r=chenyukang | Stuart Cook | -6/+6 |
| 2024-09-12 | Rollup merge of #130250 - compiler-errors:useless-conversion, r=jieyouxu | Stuart Cook | -4/+2 |