| Age | Commit message (Expand) | Author | Lines |
| 2024-12-19 | Make `TokenType::from_u32` foolproof. | Nicholas Nethercote | -115/+126 |
| 2024-12-19 | Speed up `Parser::expected_token_types`. | Nicholas Nethercote | -704/+1263 |
| 2024-12-19 | Remove `bra`/`ket` naming. | Nicholas Nethercote | -24/+24 |
| 2024-12-19 | Tweak some parser `check`/`eat` methods. | Nicholas Nethercote | -25/+20 |
| 2024-12-19 | Rename `Parser::expected_tokens` as `Parser::expected_token_types`. | Nicholas Nethercote | -24/+25 |
| 2024-12-18 | Auto merge of #134443 - joshtriplett:use-field-init-shorthand, r=lqd,tgross35... | bors | -1/+1 |
| 2024-12-18 | Rollup merge of #134253 - nnethercote:overhaul-keywords, r=petrochenkov | 许杰友 Jieyou Xu (Joe) | -4/+4 |
| 2024-12-18 | Rollup merge of #134161 - nnethercote:overhaul-token-cursors, r=spastorino | 许杰友 Jieyou Xu (Joe) | -42/+72 |
| 2024-12-18 | Only have one source of truth for keywords. | Nicholas Nethercote | -2/+2 |
| 2024-12-18 | Simplify `AllKeywords`. | Nicholas Nethercote | -2/+2 |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -25/+16 |
| 2024-12-18 | Overhaul `TokenTreeCursor`. | Nicholas Nethercote | -33/+63 |
| 2024-12-18 | Rename `RefTokenTreeCursor`. | Nicholas Nethercote | -9/+9 |
| 2024-12-17 | Use field init shorthand where possible | Josh Triplett | -1/+1 |
| 2024-12-16 | Rollup merge of #134284 - estebank:issue-74863, r=lcnr | Matthias Krüger | -2/+2 |
| 2024-12-15 | Add hir::Attribute | Jonathan Dönszelmann | -7/+6 |
| 2024-12-15 | Rename `value` field to `expr` to simplify later commits' diffs | Oli Scherer | -1/+1 |
| 2024-12-13 | Keep track of patterns that could have introduced a binding, but didn't | Esteban Küber | -2/+2 |
| 2024-12-13 | Rollup merge of #134140 - compiler-errors:unsafe-binders-ast, r=oli-obk | Matthias Krüger | -3/+39 |
| 2024-12-13 | Rollup merge of #133937 - estebank:silence-resolve-errors-from-mod-with-parse... | Matthias Krüger | -1/+1 |
| 2024-12-13 | Stabilize async closures | Michael Goulet | -4/+1 |
| 2024-12-12 | Add tests | Michael Goulet | -1/+3 |
| 2024-12-12 | Add unwrap_unsafe_binder and wrap_unsafe_binder macro operators | Michael Goulet | -2/+21 |
| 2024-12-12 | Parsing unsafe binders | Michael Goulet | -1/+16 |
| 2024-12-12 | Rollup merge of #134187 - nnethercote:rm-PErr, r=jieyouxu | Matthias Krüger | -3/+3 |
| 2024-12-12 | Rollup merge of #134173 - onur-ozkan:allow-symbol-intern-string-literal, r=ji... | Matthias Krüger | -0/+4 |
| 2024-12-12 | Remove `PErr`. | Nicholas Nethercote | -3/+3 |
| 2024-12-11 | allow `symbol_intern_string_literal` lint in test modules | onur-ozkan | -0/+4 |
| 2024-12-11 | Don't emit "field expressions may not have generic arguments" if it's a metho... | Orion Gonzalez | -2/+5 |
| 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 | Detect `struct S(ty = val);` | Esteban Küber | -1/+17 |
| 2024-12-09 | Introduce `default_field_values` feature | Esteban Küber | -4/+9 |
| 2024-12-08 | Rollup merge of #133424 - Nadrieril:guard-patterns-parsing, r=fee1-dead | Matthias Krüger | -48/+68 |
| 2024-12-04 | Fix suggestion when shorthand self has erroneous type | Michael Goulet | -1/+29 |
| 2024-12-03 | Rollup merge of #133545 - clubby789:symbol-intern-lit, r=jieyouxu | Matthias Krüger | -2/+2 |
| 2024-12-03 | Rollup merge of #132612 - compiler-errors:async-trait-bounds, r=lcnr | Matthias Krüger | -2/+2 |
| 2024-12-02 | Rollup merge of #133746 - oli-obk:push-xwyrylxmrtvq, r=jieyouxu | Guillaume Gomez | -1/+1 |
| 2024-12-02 | Gate async fn trait bound modifier on async_trait_bounds | Michael Goulet | -2/+2 |
| 2024-12-02 | Change `AttrArgs::Eq` into a struct variant | Oli Scherer | -1/+1 |
| 2024-11-30 | Eliminate magic numbers from expression precedence | David Tolnay | -15/+9 |
| 2024-11-30 | Eliminate precedence arithmetic from rustc_parse | David Tolnay | -17/+26 |
| 2024-11-30 | Rollup merge of #133623 - nnethercote:parse_expr_bottom-spans, r=compiler-errors | 许杰友 Jieyou Xu (Joe) | -21/+14 |
| 2024-11-28 | Replace `Symbol::intern` calls with preinterned symbols | clubby789 | -2/+2 |
| 2024-11-28 | Improve span handling in `parse_expr_bottom`. | Nicholas Nethercote | -21/+14 |
| 2024-11-28 | Trim extra space in 'repeated `mut`' diagnostic | clubby789 | -1/+3 |
| 2024-11-26 | Rollup merge of #133140 - dtolnay:precedence, r=fmease | Michael Goulet | -7/+10 |
| 2024-11-25 | Refactor `where` predicates, and reserve for attributes support | Frank King | -32/+30 |
| 2024-11-24 | parse guard patterns | Nadrieril | -37/+56 |
| 2024-11-24 | refactor pat parser method names/doc-comments to agree with RFC 3637 | Max Niederman | -21/+22 |
| 2024-11-21 | Implement the unsafe-fields RFC. | Luca Versari | -2/+20 |