| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-03-12 | update tests | Mark Mansi | -5/+5 | |
| 2020-02-22 | update some tests | Mark Mansi | -5/+5 | |
| 2020-02-05 | Account for `fn()` types in lifetime suggestions | Esteban Küber | -6/+2 | |
| 2020-02-05 | review comments | Esteban Küber | -1/+1 | |
| 2020-02-05 | Suggest `'r` instead of `'lifetime` | Esteban Küber | -2/+2 | |
| 2020-02-05 | When suggesting lifetimes, propose adding the new lifetime to all arguments | Esteban Küber | -2/+2 | |
| 2020-02-05 | Use spans for input borrowed types unrelated to return type | Esteban Küber | -1/+5 | |
| 2020-01-19 | review comments | Esteban Küber | -1/+1 | |
| 2020-01-19 | When encountering an expected named lifetime and none are present, suggest ↵ | Esteban Küber | -1/+5 | |
| adding one | ||||
| 2019-11-18 | Auto merge of #58281 - mark-i-m:synthesis, r=estebank | bors | -0/+12 | |
| Add outlives suggestions for some lifetime errors This PR implements suggestion diagnostics for some lifetime mismatch errors. When the borrow checker finds that some lifetime 'a doesn't outlive some other lifetime 'b that it should outlive, then in addition to the current lifetime error, we also emit a suggestion for how to fix the problem by adding a bound: - If a and b are normal named regions, suggest to add the bound `'a: 'b` - If b is static, suggest to replace a with static - If b also needs to outlive a, they must be the same, so suggest unifying them We start with a simpler implementation that avoids diagnostic regression or implementation complexity: - We only makes suggestions for lifetimes the user can already name (eg not closure regions or elided regions) - For now, we only emit a help note, not an actually suggestion because it is significantly easier. Finally, there is one hack: it seems that implicit regions in async fn are given the name '_ incorrectly. To avoid suggesting '_: 'x, we simply filter out such lifetimes by name. For more info, see this internals thread: https://internals.rust-lang.org/t/mechanical-suggestions-for-some-borrow-checker-errors/9049/3 TL;DR Make suggestions to add a `where 'a: 'b` constraint for some lifetime errors. Details are in the paper linked from the internals thread above. r? @estebank TODO - [x] Clean up code - [x] Only make idiomatic suggestions - [x] don't suggest naming `&'a self` - [x] rather than `'a: 'static`, suggest replacing `'a` with `'static` - [x] rather than `'a: 'b, 'b: 'a`, suggest replacing `'a` with `'b` or vice versa - [x] Performance (maybe need a perf run when this is closer to the finish line?) - perf run was clean... - EDIT: perf run seems to only check non-error performance... How do we check that error performance didn't regress? - [x] Needs ui tests - [x] Integrate the `help` message into the main lifetime `error` | ||||
| 2019-11-07 | Update ui tests | Guillaume Gomez | -0/+25 | |
| 2019-10-27 | update tests | Mark Mansi | -0/+12 | |
| 2019-09-12 | update tests | Mark Mansi | -3/+3 | |
| 2019-06-13 | Create fewer basic blocks in match MIR lowering | Matthew Jasper | -3/+3 | |
| 2019-05-29 | Update ui test suite to use dyn | memoryruins | -9/+9 | |
| 2019-05-12 | Change compare mode to use -Zborrowck=mir | Matthew Jasper | -0/+379 | |
| 2019-05-03 | Update tests | Christopher Vittal | -52/+14 | |
| 2019-04-25 | Rollup merge of #60160 - xldenis:fix-overlapping-zero-width-annotation, ↵ | Mazdak Farrokhzad | -3/+1 | |
| r=estebank Fix #58270, fix off-by-one error in error diagnostics. This fixes #58270 by checking if two diagnostics overlap completely when we're calculating the line offset for each message. | ||||
| 2019-04-22 | Fix #58270, fix off-by-one error in error diagnostics. | Xavier Denis | -3/+1 | |
| 2019-04-22 | Remove double trailing newlines | varkor | -3/+0 | |
| 2019-04-18 | hide `--explain` hint if error has no extended info | Andy Russell | -25/+0 | |
| 2019-03-11 | Update tests | Vadim Petrochenkov | -47/+47 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -406/+45 | |
| 2018-10-17 | Update output for borrowck=migrate compare mode. | David Wood | -379/+0 | |
| This commit updates the test output for the updated NLL compare mode that uses `-Z borrowck=migrate` rather than `-Z borrowck=mir`. The previous commit changes `compiletest` and this commit only updates `.nll.stderr` files. | ||||
| 2018-10-15 | Deduplicate tests | Shotaro Yamada | -45/+0 | |
| * `ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-4` and `ex3-both-anon-regions-both-are-structs-3` * `ui/lint/lint-group-style` and `lint-group-nonstandard-style` | ||||
| 2018-09-19 | Update ui tests | Matthew Jasper | -8/+8 | |
| 2018-09-12 | use structured suggestion for "missing mut" label | Andy Russell | -5/+5 | |
| Fixes #54133. | ||||
| 2018-09-01 | Update tests | Basile Desloges | -302/+0 | |
| 2018-08-27 | remove `let x = baz` which was obscuring the real error | Niko Matsakis | -8/+8 | |
| 2018-08-19 | Fix typos found by codespell. | Matthias Krüger | -2/+2 | |
| 2018-08-14 | Update tests | Matthew Jasper | -33/+30 | |
| 2018-08-14 | Merged migrated compile-fail tests and ui tests. Fixes #46841. | David Wood | -0/+1974 | |
