| Age | Commit message (Expand) | Author | Lines |
| 2024-06-05 | Use `source_str_to_stream` in a test file. | Nicholas Nethercote | -6/+2 |
| 2024-06-05 | Rename `maybe_source_file_to_parser` as `maybe_new_parser_from_source_file`. | Nicholas Nethercote | -3/+3 |
| 2024-06-05 | Remove low-value comments. | Nicholas Nethercote | -7/+0 |
| 2024-06-05 | Improve `panictry_buffer!`. | Nicholas Nethercote | -15/+12 |
| 2024-06-05 | Remove `stream_to_parser`. | Nicholas Nethercote | -11/+3 |
| 2024-06-05 | Rename `maybe_file_to_stream` as `maybe_source_file_to_stream`. | Nicholas Nethercote | -3/+3 |
| 2024-06-05 | Inline and remove `error_malformed_cfg_attr_missing`. | Nicholas Nethercote | -10/+10 |
| 2024-06-05 | Don't use the word "parse" for lexing operations. | Nicholas Nethercote | -39/+36 |
| 2024-06-05 | `UNICODE_ARRAY` and `ASCII_ARRAY` fixes. | Nicholas Nethercote | -37/+38 |
| 2024-06-04 | Add safe/unsafe to static inside extern blocks | Santiago Pastorino | -5/+13 |
| 2024-06-04 | Handle safety keyword for extern block inner items | Santiago Pastorino | -2/+21 |
| 2024-06-02 | Avoid checking the edition as much as possible | Vincenzo Palazzo | -1/+1 |
| 2024-06-01 | Auto merge of #125863 - fmease:rej-CVarArgs-in-parse_ty_for_where_clause, r=c... | bors | -2/+3 |
| 2024-06-01 | Reject CVarArgs in parse_ty_for_where_clause | León Orell Valerian Liehr | -2/+3 |
| 2024-05-31 | Rollup merge of #125635 - fmease:mv-type-binding-assoc-item-constraint, r=com... | Matthias Krüger | -18/+15 |
| 2024-05-30 | Rename HIR `TypeBinding` to `AssocItemConstraint` and related cleanup | León Orell Valerian Liehr | -18/+15 |
| 2024-05-28 | Create const block DefIds in typeck instead of ast lowering | Oli Scherer | -8/+5 |
| 2024-05-23 | Remove `#[macro_use] extern crate tracing` from `rustc_parse`. | Nicholas Nethercote | -3/+5 |
| 2024-05-22 | Rollup merge of #125049 - dtolnay:castbrace, r=compiler-errors | León Orell Valerian Liehr | -11/+17 |
| 2024-05-21 | Auto merge of #124417 - Xiretza:translate-early-lints, r=fmease | bors | -28/+15 |
| 2024-05-21 | Rename buffer_lint_with_diagnostic to buffer_lint | Xiretza | -4/+4 |
| 2024-05-21 | Convert uses of BuiltinLintDiag::Normal to custom variants | Xiretza | -21/+11 |
| 2024-05-21 | Generate lint diagnostic message from BuiltinLintDiag | Xiretza | -4/+1 |
| 2024-05-20 | Fix parsing of erroneously placed semicolons | ardi | -3/+9 |
| 2024-05-18 | Auto merge of #125077 - spastorino:add-new-fnsafety-enum2, r=jackh726 | bors | -30/+30 |
| 2024-05-18 | Rollup merge of #125117 - dev-ardi:improve-parser, r=wesleywiser,fmease | Matthias Krüger | -68/+74 |
| 2024-05-17 | Auto merge of #123865 - eholk:expr_2021, r=fmease | bors | -2/+10 |
| 2024-05-17 | Rename Unsafe to Safety | Santiago Pastorino | -30/+30 |
| 2024-05-17 | Update compiler/rustc_parse/src/parser/nonterminal.rs | Eric Holk | -2/+1 |
| 2024-05-17 | use signature name for arg | ardi | -2/+2 |
| 2024-05-17 | s/(Ident, ItemKind)/ItemInfo/ | ardi | -2/+2 |
| 2024-05-17 | Clarify that the diff_marker is talking about version control system | ardi | -38/+47 |
| 2024-05-15 | delegation: Implement list delegation | Vadim Petrochenkov | -10/+28 |
| 2024-05-14 | improve maybe_consume_incorrect_semicolon | ardi | -26/+23 |
| 2024-05-13 | Warn against redundant use<...> | Michael Goulet | -28/+30 |
| 2024-05-14 | Remove `NtIdent` and `NtLifetime`. | Nicholas Nethercote | -27/+36 |
| 2024-05-13 | Macros: match const { ... } with expr nonterminal in edition 2024 | Vincenzo Palazzo | -1/+8 |
| 2024-05-13 | Add expr_2021 nonterminal and feature flag | Eric Holk | -2/+4 |
| 2024-05-12 | Disallow cast with trailing braced macro in let-else | David Tolnay | -11/+17 |
| 2024-05-13 | Remove a `Span` from `TokenKind::Interpolated`. | Nicholas Nethercote | -50/+29 |
| 2024-05-11 | Add classify::expr_is_complete | David Tolnay | -59/+3 |
| 2024-05-11 | Remove MacCall special cases from Parser::parse_full_stmt | David Tolnay | -9/+3 |
| 2024-05-11 | Remove MacCall special case from recovery after missing 'if' after 'else' | David Tolnay | -6/+28 |
| 2024-05-11 | Document MacCall special case in Parser::parse_arm | David Tolnay | -0/+11 |
| 2024-05-11 | Document MacCall special case in Parser::expr_is_complete | David Tolnay | -7/+44 |
| 2024-05-11 | Mark Parser::expr_is_complete call sites | David Tolnay | -5/+7 |
| 2024-05-11 | Macro call with braces does not require semicolon to be statement | David Tolnay | -7/+20 |
| 2024-05-11 | Mark expr_requires_semi_to_be_stmt call sites | David Tolnay | -5/+6 |
| 2024-05-11 | Rollup merge of #124930 - compiler-errors:consume-arg, r=petrochenkov | 许杰友 Jieyou Xu (Joe) | -1/+5 |
| 2024-05-11 | Rollup merge of #124318 - bvanjoi:fix-123911, r=petrochenkov | 许杰友 Jieyou Xu (Joe) | -7/+12 |