| Age | Commit message (Expand) | Author | Lines |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -3/+6 |
| 2023-07-05 | Fix the issue of wrong diagnosis for extern pub fn | yukang | -1/+5 |
| 2023-07-04 | Detect extra space in keyword for better hint | yukang | -0/+16 |
| 2023-06-27 | Auto merge of #113105 - matthiaskrgr:rollup-rci0uym, r=matthiaskrgr | bors | -15/+12 |
| 2023-06-27 | Rollup merge of #112978 - compiler-errors:bad-block-sugg, r=davidtwco | Matthias Krüger | -0/+15 |
| 2023-06-27 | Rollup merge of #112518 - chenyukang:yukang-fix-112458, r=davidtwco | Matthias Krüger | -2/+8 |
| 2023-06-27 | Simplify some conditions | Maybe Waffle | -15/+12 |
| 2023-06-23 | Add suggestion for bad block fragment error | Michael Goulet | -0/+15 |
| 2023-06-19 | Syntatically accept `become` expressions | Maybe Waffle | -0/+12 |
| 2023-06-15 | Handle interpolated literal errors | Michael Goulet | -6/+3 |
| 2023-06-11 | Detect actual span for getting unexpected token from parsing macros | yukang | -2/+8 |
| 2023-06-11 | Rollup merge of #112498 - SamZhang3:rust-reference-link-update, r=Nilstrieb | Matthias Krüger | -1/+1 |
| 2023-06-10 | Use a better link | Hankai Zhang | -1/+1 |
| 2023-06-10 | Update links to Rust Reference page on literals in diagnostic | Hankai Zhang | -1/+1 |
| 2023-06-10 | remove unwrap | yukang | -9/+12 |
| 2023-06-10 | take care module name for suggesting surround the struct literal in parentheses | yukang | -1/+9 |
| 2023-06-09 | Move parse_seq_to_before_end closure to own function | est31 | -43/+37 |
| 2023-06-08 | Support float-like tuple indices in offset_of!() | est31 | -2/+45 |
| 2023-06-08 | Move float breaking out of Parser::parse_expr_tuple_field_access_float | est31 | -22/+53 |
| 2023-06-03 | Fix suggestion for matching struct with `..` on both ends | 许杰友 Jieyou Xu (Joe) | -12/+45 |
| 2023-05-29 | Auto merge of #111748 - nnethercote:Cow-DiagnosticMessage, r=WaffleLapkin | bors | -3/+4 |
| 2023-05-29 | Use `Cow` in `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -3/+4 |
| 2023-05-28 | Recover upon encountering mistyped `Const` in const param def | 许杰友 Jieyou Xu (Joe) | -0/+44 |
| 2023-05-27 | Rollup merge of #111181 - bvanjoi:fix-issue-111148, r=davidtwco | Matthias Krüger | -1/+3 |
| 2023-05-24 | Use `is_some_and`/`is_ok_and` in less obvious spots | Maybe Waffle | -1/+1 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -7/+7 |
| 2023-05-20 | Rollup merge of #111708 - jyn514:delay-span-bug-msg, r=compiler-errors | Dylan DPC | -0/+1 |
| 2023-05-18 | Rollup merge of #111054 - cjgillot:cfg-eval-recover, r=b-naber | Dylan DPC | -1/+2 |
| 2023-05-18 | Rollup merge of #111633 - nnethercote:avoid-ref-format, r=WaffleLapkin | Dylan DPC | -2/+2 |
| 2023-05-17 | Give a more useful location for where a span_bug was delayed | jyn | -0/+1 |
| 2023-05-16 | Avoid `&format("...")` calls in error message code. | Nicholas Nethercote | -2/+2 |
| 2023-05-15 | Recover `impl<T ?Sized>` correctly | Michael Goulet | -0/+5 |
| 2023-05-15 | Rollup merge of #111531 - chenyukang:yukang-fix-111416-ice, r=compiler-errors | Matthias Krüger | -0/+4 |
| 2023-05-13 | fmt | yukang | -6/+3 |
| 2023-05-13 | Fix ice caused by shorthand fields in NoFieldsForFnCall | yukang | -0/+7 |
| 2023-05-13 | improve error for `impl<..> impl Trait for Type` | y21 | -4/+28 |
| 2023-05-13 | fix(parse): return unpected when current token is EOF | bohan | -1/+3 |
| 2023-05-09 | Rollup merge of #111120 - chenyukang:yukang-suggest-let, r=Nilstrieb | Dylan DPC | -13/+47 |
| 2023-05-09 | Rollup merge of #110694 - est31:builtin, r=petrochenkov | Dylan DPC | -1/+89 |
| 2023-05-09 | move sugg to derive session diagnostic | yukang | -9/+17 |
| 2023-05-08 | make it more accurate by parsing ty | yukang | -9/+19 |
| 2023-05-08 | suggest struct when we get colon in fileds in enum | yukang | -0/+9 |
| 2023-05-08 | code refactor and fix wrong suggestion | yukang | -24/+36 |
| 2023-05-08 | fix ice in suggesting | yukang | -7/+14 |
| 2023-05-08 | cleanup | yukang | -2/+1 |
| 2023-05-08 | Suggest let for possible binding with ty | yukang | -9/+17 |
| 2023-05-06 | Rollup merge of #111230 - zacklukem:eq-less-to-less-eq, r=compiler-errors | Matthias Krüger | -1/+12 |
| 2023-05-05 | Add feature gate | est31 | -0/+1 |
| 2023-05-05 | Migrate offset_of from a macro to builtin # syntax | est31 | -1/+19 |
| 2023-05-05 | Add parsing for builtin # in expression and item context | est31 | -1/+70 |