| Age | Commit message (Expand) | Author | Lines |
| 2023-08-24 | Auto merge of #115131 - frank-king:feature/unnamed-fields-lite, r=petrochenkov | bors | -3/+51 |
| 2023-08-24 | Parse unnamed fields and anonymous structs or unions | Frank King | -3/+51 |
| 2023-08-23 | Bump cfg(bootstrap) | Mark Rousskov | -1/+1 |
| 2023-08-19 | Fix a stack overflow with long else if chains | John Kåre Alsaker | -1/+2 |
| 2023-08-18 | Auto merge of #114915 - nnethercote:Nonterminal-cleanups, r=petrochenkov | bors | -80/+82 |
| 2023-08-18 | Rename `NtOrTt` as `ParseNtResult`. | Nicholas Nethercote | -5/+5 |
| 2023-08-18 | Use `interpolated_or_expr_span` in one suitable place. | Nicholas Nethercote | -7/+1 |
| 2023-08-18 | Refactor `interpolated_or_expr_span`. | Nicholas Nethercote | -20/+12 |
| 2023-08-17 | Rollup merge of #114913 - beetrees:escape-double-quote, r=davidtwco | Josh Stone | -14/+8 |
| 2023-08-17 | Simplify a `match`. | Nicholas Nethercote | -4/+1 |
| 2023-08-17 | Make some `match`es exhaustive in `nonterminal.rs`. | Nicholas Nethercote | -5/+20 |
| 2023-08-17 | Use `Nonterminal::*` in `nonterminal.rs`. | Nicholas Nethercote | -26/+17 |
| 2023-08-17 | Remove unnecessary braces on `PatWithOr` patterns. | Nicholas Nethercote | -4/+4 |
| 2023-08-17 | Add some useful comments to `Parser::look_ahead`. | Nicholas Nethercote | -8/+23 |
| 2023-08-17 | Rename `parse_no_question_mark_recover`. | Nicholas Nethercote | -2/+2 |
| 2023-08-17 | Remove outdated comment. | Nicholas Nethercote | -2/+0 |
| 2023-08-16 | Fix suggestion for attempting to define a string with single quotes | beetrees | -14/+8 |
| 2023-08-16 | Fix bad suggestion when wrong parentheses around a dyn trait | yukang | -18/+23 |
| 2023-08-13 | Remove reached_eof from ParseSess | bjorn3 | -14/+0 |
| 2023-08-08 | inlined kind | darklyspaced | -2/+1 |
| 2023-08-07 | always return ExprKind::Err | darklyspaced | -6/+1 |
| 2023-08-04 | Rollup merge of #114434 - Nilstrieb:indexing-spans, r=est31 | Matthias Krüger | -4/+7 |
| 2023-08-04 | Improve spans for indexing expressions | Nilstrieb | -4/+7 |
| 2023-08-04 | Rollup merge of #113999 - Centri3:macro-arm-expand, r=wesleywiser | Matthias Krüger | -24/+68 |
| 2023-08-03 | Auto merge of #108955 - Nilstrieb:dont-use-me-pls, r=oli-obk | bors | -0/+1 |
| 2023-08-03 | Rollup merge of #114300 - MU001999:fix/turbofish-pat, r=estebank | Matthias Krüger | -28/+66 |
| 2023-08-03 | Rollup merge of #114237 - bvanjoi:fix-114219, r=cjgillot | Matthias Krüger | -4/+18 |
| 2023-08-03 | Add `internal_features` lint | Nilstrieb | -0/+1 |
| 2023-08-03 | Reduce arbitrary self type suggestions | r0cky | -15/+3 |
| 2023-08-03 | Avoid too many expected symbols and reduce `None`s | r0cky | -58/+52 |
| 2023-08-03 | Apply suggestions | r0cky | -2/+4 |
| 2023-08-02 | Add test for enum with fields | Catherine Flores | -6/+1 |
| 2023-08-03 | Remove `MacDelimiter`. | Nicholas Nethercote | -14/+12 |
| 2023-08-03 | Keep the suggestion for wrong arbitrary self types | Mu001999 | -54/+85 |
| 2023-08-02 | Avoid an unnecessary local variable. | Nicholas Nethercote | -2/+1 |
| 2023-08-02 | Move `TokenCursor::break_last_token` into `Parser`. | Nicholas Nethercote | -39/+25 |
| 2023-08-02 | Move `TokenCursor::num_next_calls` into `Parser` and rename it. | Nicholas Nethercote | -18/+14 |
| 2023-08-02 | Inline and remove `parse_all_token_trees`. | Nicholas Nethercote | -10/+1 |
| 2023-08-02 | `parse_all_token_trees` cannot fail. | Nicholas Nethercote | -2/+2 |
| 2023-08-01 | Auto merge of #114273 - nnethercote:move-doc-comment-desugaring, r=petrochenkov | bors | -80/+15 |
| 2023-08-01 | Suggests turbofish in patterns | Mu001999 | -1/+24 |
| 2023-07-31 | Remove `desugar_doc_comments` arg from `Parser::new()`. | Nicholas Nethercote | -8/+3 |
| 2023-07-31 | Move doc comment desugaring out of `TokenCursor`. | Nicholas Nethercote | -73/+13 |
| 2023-07-31 | parser: more friendly hints for handling `async move` in the 2015 edition | bohan | -4/+18 |
| 2023-07-31 | Fix a typo in a comment. | Nicholas Nethercote | -3/+3 |
| 2023-07-31 | Remove an unnecessary `return` keyword. | Nicholas Nethercote | -1/+1 |
| 2023-07-30 | Rollup merge of #114256 - Urgau:fix-issue-114180, r=WaffleLapkin | Matthias Krüger | -1/+1 |
| 2023-07-30 | Fix invalid suggestion for mismatched types in closure arguments | Urgau | -1/+1 |
| 2023-07-30 | inline format!() args up to and including rustc_middle | Matthias Krüger | -39/+32 |
| 2023-07-29 | Auto merge of #114028 - Centri3:ternary-operator, r=compiler-errors | bors | -2/+53 |