| Age | Commit message (Expand) | Author | Lines |
| 2022-10-25 | Rollup merge of #103350 - clubby789:refer-to-assoc-method, r=wesleywiser | Yuki Okushi | -13/+29 |
| 2022-10-23 | Rollup merge of #101908 - chenyukang:fix-101880, r=estebank | Dylan DPC | -53/+43 |
| 2022-10-21 | Different suggestions for when associated functions are referred to | clubby789 | -13/+29 |
| 2022-10-21 | Rollup merge of #103111 - cjgillot:shadow-label, r=estebank | Dylan DPC | -9/+61 |
| 2022-10-20 | fix rust-lang#101880: suggest let for assignment, and some code refactor | yukang | -53/+43 |
| 2022-10-18 | Fix the bug of next_point in span | yukang | -1/+1 |
| 2022-10-16 | Point to shadowed name when it exists. | Camille GILLOT | -5/+40 |
| 2022-10-16 | Account for hygiene when suggesting typos. | Camille GILLOT | -4/+21 |
| 2022-10-11 | rustc_hir: Less error-prone methods for accessing `PartialRes` resolution | Vadim Petrochenkov | -22/+14 |
| 2022-10-10 | Rename AssocItemKind::TyAlias to AssocItemKind::Type | Michael Goulet | -2/+2 |
| 2022-09-29 | Auto merge of #101887 - nnethercote:shrink-Res, r=spastorino | bors | -1/+1 |
| 2022-09-29 | Rollup merge of #102085 - chenyukang:code-refactor, r=cjgillot | Yuki Okushi | -247/+366 |
| 2022-09-29 | Shrink `hir::def::Res`. | Nicholas Nethercote | -1/+1 |
| 2022-09-26 | trivial fix on fallback | yukang | -3/+1 |
| 2022-09-26 | more code refactor on smart_resolve_report_errors | yukang | -175/+207 |
| 2022-09-22 | Fix a typo in error message | Frank Steffahn | -1/+1 |
| 2022-09-21 | add trivial comments | yukang | -2/+3 |
| 2022-09-21 | code refactoring smart_resolve_report_errors | yukang | -173/+261 |
| 2022-09-11 | Avoid `Iterator::last` | KaDiWa | -2/+2 |
| 2022-09-01 | Always import all tracing macros for the entire crate instead of piecemeal by... | Oli Scherer | -2/+0 |
| 2022-08-31 | Fix uintended diagnostic caused by `drain(..)` | Donough Liu | -12/+13 |
| 2022-08-28 | Auto merge of #100497 - kadiwa4:remove_clone_into_iter, r=cjgillot | bors | -1/+1 |
| 2022-08-26 | Rollup merge of #100817 - vincenzopalazzo:macros/bool_spelling_sugg, r=davidtwco | Michael Goulet | -5/+22 |
| 2022-08-22 | sugg: suggest the usage of boolean value when there is a typo in the keyword | Vincenzo Palazzo | -5/+22 |
| 2022-08-22 | make some methods private | Takayuki Maeda | -1/+1 |
| 2022-08-18 | Rollup merge of #100643 - TaKO8Ki:point-at-type-parameter-shadowing-another-t... | Matthias Krüger | -0/+12 |
| 2022-08-17 | point at a type parameter shadowing another type | Takayuki Maeda | -0/+12 |
| 2022-08-13 | avoid cloning and then iterating | KaDiWa | -1/+1 |
| 2022-08-11 | Suggest path separator when a dot is used on a trait | León Orell Valerian Liehr | -16/+37 |
| 2022-08-10 | Use &mut Diagnostic instead of &mut DiagnosticBuilder unless needed | Michael Goulet | -3/+3 |
| 2022-07-28 | Remove guess_head_span. | Camille GILLOT | -6/+1 |
| 2022-07-26 | Rollup merge of #99729 - cjgillot:rm-unused-tuple, r=michaelwoerister | Matthias Krüger | -1/+1 |
| 2022-07-25 | Unused tuple fields in rustc_resolve. | Camille GILLOT | -1/+1 |
| 2022-07-25 | Report elision failures on the AST. | Camille GILLOT | -572/+279 |
| 2022-07-19 | Rollup merge of #99401 - TaKO8Ki:avoid-symbol-to-&str-conversions, r=nnethercote | Matthias Krüger | -8/+13 |
| 2022-07-18 | avoid `Symbol` to `&str` conversions | Takayuki Maeda | -8/+13 |
| 2022-07-14 | Rollup merge of #98705 - WaffleLapkin:closure_binder, r=cjgillot | Dylan DPC | -1/+5 |
| 2022-07-12 | make for<> in closures a possible place to suggest adding named lifetime | Maybe Waffle | -1/+5 |
| 2022-07-10 | avoid some `&str` to `String` conversions | Takayuki Maeda | -4/+2 |
| 2022-06-30 | Rollup merge of #98677 - lyming2007:issue-98492-fix, r=lcnr | Matthias Krüger | -0/+2 |
| 2022-06-30 | For diagnostic information of Boolean, remind it as use the type: 'bool' | Yiming Lei | -0/+2 |
| 2022-06-29 | avoid many `&str` to `String` conversions with `MultiSpan::push_span_label` | Takayuki Maeda | -9/+4 |
| 2022-06-22 | Auto merge of #98279 - cjgillot:all-fresh-nofn, r=petrochenkov | bors | -3/+12 |
| 2022-06-21 | Always create parameters for functions-like types. | Camille GILLOT | -3/+12 |
| 2022-06-20 | Rollup merge of #98267 - compiler-errors:suggest-wildcard-arm, r=oli-obk | Matthias Krüger | -1/+1 |
| 2022-06-19 | Don't suggest adding Self as a type parameter | Michael Goulet | -1/+1 |
| 2022-06-19 | Mention what item is using an invalid `Self` type | Michael Goulet | -0/+19 |
| 2022-06-19 | Use `Span::eq_ctxt` method instead of `.ctxt() == .ctxt()` | Michael Goulet | -1/+1 |
| 2022-06-17 | Auto merge of #98106 - cjgillot:split-definitions, r=michaelwoerister | bors | -1/+0 |
| 2022-06-15 | Rollup merge of #97822 - compiler-errors:hesitate-to-suggest-intrinsics, r=ol... | Yuki Okushi | -1/+13 |