| Age | Commit message (Expand) | Author | Lines |
| 2023-01-17 | Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726 | Matthias Krüger | -6/+6 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -6/+6 |
| 2023-01-15 | Only suggest adding type param if path being resolved was a type | Michael Goulet | -1/+1 |
| 2023-01-07 | Rollup merge of #105859 - compiler-errors:hr-lifetime-add, r=davidtwco | Matthias Krüger | -6/+21 |
| 2022-12-29 | Rollup merge of #106221 - Nilstrieb:rptr-more-like-ref-actually, r=compiler-e... | Matthias Krüger | -2/+2 |
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -2/+2 |
| 2022-12-27 | Make resolve suggestion more generic | Esteban Küber | -1/+1 |
| 2022-12-27 | review comments: make suggestion more accurate | Esteban Küber | -2/+10 |
| 2022-12-26 | Detect likely `.` -> `..` typo in method calls | Esteban Küber | -7/+25 |
| 2022-12-18 | higher-ranked lifetime message | Michael Goulet | -6/+21 |
| 2022-12-13 | Rollup merge of #104864 - chenyukang:yukang/fix-104700-binding, r=estebank | Matthias Krüger | -1/+7 |
| 2022-12-06 | Rollup merge of #105289 - Rageking8:fix-dupe-word-typos, r=cjgillot | Yuki Okushi | -1/+1 |
| 2022-12-05 | Rollup merge of #105230 - cjgillot:issue-104312, r=petrochenkov | Matthias Krüger | -1/+1 |
| 2022-12-05 | fix dupe word typos | Rageking8 | -1/+1 |
| 2022-12-04 | Rollup merge of #101975 - chenyukang:fix-101749, r=compiler-errors | Matthias Krüger | -8/+20 |
| 2022-12-03 | Skip recording resolution for duplicated generic params. | Camille GILLOT | -1/+1 |
| 2022-12-03 | fix #101749, use . instead of :: when accessing a method of an object | yukang | -8/+20 |
| 2022-11-27 | Auto merge of #104048 - cjgillot:split-lifetime, r=compiler-errors | bors | -0/+1 |
| 2022-11-25 | fix the crossing function issue | yukang | -0/+2 |
| 2022-11-25 | fix #104700, account for item-local in inner scope for E0425 | yukang | -1/+5 |
| 2022-11-24 | Record in HIR whether lifetime elision was succesful. | Camille GILLOT | -0/+1 |
| 2022-11-24 | Auto merge of #104321 - Swatinem:async-gen, r=oli-obk | bors | -1/+1 |
| 2022-11-24 | Avoid `GenFuture` shim when compiling async constructs | Arpad Borsos | -1/+1 |
| 2022-11-23 | Suggest `.clone()` or `ref binding` on E0382 | Esteban Küber | -1/+3 |
| 2022-11-18 | Auto merge of #104573 - matthiaskrgr:rollup-k36ybtp, r=matthiaskrgr | bors | -1/+8 |
| 2022-11-17 | Box `ExprKind::{Closure,MethodCall}`, and `QSelf` in expressions, types, and ... | Nicholas Nethercote | -28/+31 |
| 2022-11-13 | migrating rustc_resolve to SessionDiagnostic. work in progress. start | Rajput, Rajat | -1/+8 |
| 2022-11-10 | add 'is_assign_rhs' to avoid weird suggesting 'let' | yukang | -4/+10 |
| 2022-11-01 | Rollup merge of #103706 - zbyrn:issue-101637-fix, r=estebank | Dylan DPC | -17/+37 |
| 2022-10-29 | Auto merge of #103450 - cjgillot:elision-nodedup, r=Mark-Simulacrum | bors | -34/+69 |
| 2022-10-27 | Only ban duplication across parameters. | Camille GILLOT | -31/+66 |
| 2022-10-27 | Remove redundant braces | Byron Zhong | -4/+3 |
| 2022-10-27 | Fix E0433 diagnostics ignoring typo suggestions and outputing wrong message | Byron Zhong | -16/+37 |
| 2022-10-23 | Do not consider repeated lifetime params for elision. | Camille GILLOT | -5/+5 |
| 2022-10-20 | Rollup merge of #103221 - TaKO8Ki:fix-103202, r=oli-obk | Matthias Krüger | -3/+3 |
| 2022-10-20 | fix rust-lang#101880: suggest let for assignment, and some code refactor | yukang | -0/+8 |
| 2022-10-20 | check if impl_self is `Some` | Takayuki Maeda | -1/+1 |
| 2022-10-19 | Rollup merge of #103216 - cjgillot:issue-103210, r=jackh726 | Dylan DPC | -6/+11 |
| 2022-10-19 | fix `SelfVisitor::is_self_ty` ICE | Takayuki Maeda | -3/+3 |
| 2022-10-18 | Consider patterns in fn params in an `Elided(Infer)` lifetime rib. | Camille GILLOT | -6/+11 |
| 2022-10-15 | Rollup merge of #102884 - petrochenkov:liferib, r=cjgillot | Dylan DPC | -65/+77 |
| 2022-10-13 | resolve: Regroup lifetime rib kinds to account for their purpose | Vadim Petrochenkov | -16/+23 |
| 2022-10-13 | resolve: Remove redundant item lifetime ribs | Vadim Petrochenkov | -37/+28 |
| 2022-10-13 | resolve: Add some asserts for unexpected lifetime rib combinations | Vadim Petrochenkov | -12/+26 |
| 2022-10-12 | fix #102946 | Takayuki Maeda | -1/+1 |
| 2022-10-11 | Rollup merge of #102889 - petrochenkov:partres, r=cjgillot | Matthias Krüger | -13/+15 |
| 2022-10-11 | Rollup merge of #100387 - cjgillot:hygiene-trait-impl, r=petrochenkov | Matthias Krüger | -3/+30 |
| 2022-10-11 | Report duplicate definitions in trait impls during resolution. | Camille GILLOT | -3/+30 |
| 2022-10-11 | rustc_hir: Less error-prone methods for accessing `PartialRes` resolution | Vadim Petrochenkov | -13/+15 |
| 2022-10-10 | Move lifetime resolution module to rustc_hir_analysis. | Camille GILLOT | -1/+0 |