| Age | Commit message (Expand) | Author | Lines |
| 2023-03-28 | Add `(..)` syntax for RTN | Michael Goulet | -8/+39 |
| 2023-03-28 | RTN | Michael Goulet | -1/+5 |
| 2023-03-27 | Rollup merge of #109354 - Swatinem:rm-closureid, r=compiler-errors | Guillaume Gomez | -1/+1 |
| 2023-03-22 | Rollup merge of #109203 - Ezrashaw:refactor-ident-parsing, r=Nilstrieb | Matthias Krüger | -64/+128 |
| 2023-03-21 | Refactor `handle_missing_lit`. | Nicholas Nethercote | -14/+8 |
| 2023-03-20 | feat: implement error recovery in `expected_ident_found` | Ezra Shaw | -36/+79 |
| 2023-03-19 | Remove the `NodeId` of `ast::ExprKind::Async` | Arpad Borsos | -1/+1 |
| 2023-03-19 | refactor: improve "ident starts with number" error | Ezra Shaw | -16/+29 |
| 2023-03-19 | refactor: refactor identifier parsing somewhat | Ezra Shaw | -22/+30 |
| 2023-03-13 | Auto merge of #108471 - clubby789:unbox-the-syntax, r=Nilstrieb,est31 | bors | -3/+34 |
| 2023-03-12 | Rollup merge of #109029 - compiler-errors:parse-gating, r=jackh726 | Matthias Krüger | -4/+10 |
| 2023-03-12 | Add recovery for use of removed `box` syntax | clubby789 | -0/+28 |
| 2023-03-12 | Remove `box_syntax` from AST and use in tools | clubby789 | -10/+13 |
| 2023-03-11 | Simplify message paths | est31 | -1/+1 |
| 2023-03-11 | Gate const closures even when they appear in macros | Michael Goulet | -4/+8 |
| 2023-03-11 | Gate all usages of dyn*, even in macros | Michael Goulet | -0/+2 |
| 2023-03-09 | Rollup merge of #108854 - Ezrashaw:improve-int-idents, r=oli-obk | Matthias Krüger | -34/+40 |
| 2023-03-09 | feat/refactor: improve errors in case of ident with number at start | Ezra Shaw | -34/+40 |
| 2023-03-07 | Simplify `sort_by` calls | Maybe Waffle | -1/+1 |
| 2023-03-04 | Rollup merge of #108715 - chenyukang:yukang/cleanup-parser-delims, r=compiler... | Matthias Krüger | -158/+12 |
| 2023-03-04 | Rollup merge of #108298 - TaKO8Ki:fix-104440, r=cjgillot | Dylan DPC | -2/+7 |
| 2023-03-03 | Remove unclosed_delims from parser | yukang | -158/+12 |
| 2023-03-03 | Match unmatched backticks in comments in compiler/ | est31 | -3/+3 |
| 2023-03-03 | check if snippet is `)` | Takayuki Maeda | -2/+7 |
| 2023-03-01 | recover from for-else and while-else | y21 | -0/+33 |
| 2023-03-01 | Auto merge of #108587 - matthiaskrgr:rollup-rw6po59, r=matthiaskrgr | bors | -2/+26 |
| 2023-03-01 | Rollup merge of #108496 - nx2k3:issue-108495-dec, r=WaffleLapkin | Matthias Krüger | -2/+26 |
| 2023-03-01 | Rollup merge of #108297 - chenyukang:yukang/delim-error-exit, r=petrochenkov | Matthias Krüger | -56/+60 |
| 2023-02-28 | micro fmt changes | Maybe Waffle | -1/+2 |
| 2023-02-28 | refactor parse_token_trees to not return unmatched_delims | yukang | -30/+29 |
| 2023-02-28 | no need to return unmatched_delims from tokentrees | yukang | -10/+6 |
| 2023-02-28 | rename unmatched_braces to unmatched_delims | yukang | -26/+27 |
| 2023-02-28 | remove duplicated diagnostic for unclosed delimiter | yukang | -8/+9 |
| 2023-02-28 | Exit when there are unmatched delims to avoid noisy diagnostics | yukang | -3/+10 |
| 2023-02-27 | handle only postfix decrement | nx2k3 | -34/+4 |
| 2023-02-27 | check double negation | nx2k3 | -3/+10 |
| 2023-02-26 | fix some comments | nx2k3 | -7/+5 |
| 2023-02-26 | fix #108495, postfix decrement and prefix decrement has no warning | nx2k3 | -7/+55 |
| 2023-02-26 | Rollup merge of #108418 - est31:parser_function_names, r=Nilstrieb | Matthias Krüger | -130/+130 |
| 2023-02-24 | Replace parse_[sth]_expr with parse_expr_[sth] function names | est31 | -130/+130 |
| 2023-02-23 | parser: provide better errors on closures with braces missing | Yutaro Ohno | -1/+5 |
| 2023-02-22 | errors: generate typed identifiers in each crate | David Wood | -99/+123 |
| 2023-02-21 | Use `ThinVec` in a few more AST types. | Nicholas Nethercote | -4/+4 |
| 2023-02-21 | Use `ThinVec` in `ast::ExprKind::Match`. | Nicholas Nethercote | -1/+1 |
| 2023-02-21 | Use `ThinVec` in `ast::PatKind::Struct`. | Nicholas Nethercote | -4/+4 |
| 2023-02-21 | Use `ThinVec` in `ast::AngleBracketedArgs`. | Nicholas Nethercote | -4/+4 |
| 2023-02-21 | Use `ThinVec` in `ast::Block`. | Nicholas Nethercote | -7/+12 |
| 2023-02-21 | Use `ThinVec` in various AST types. | Nicholas Nethercote | -29/+35 |
| 2023-02-21 | Use `ThinVec` in `ast::Impl` and related types. | Nicholas Nethercote | -3/+3 |
| 2023-02-21 | Use `ThinVec` in `ast::WhereClause`. | Nicholas Nethercote | -2/+2 |