| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-11-24 | Show number in error message even for one error | Nilstrieb | -5/+5 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-11-16 | recover primary span label | Esteban Küber | -7/+7 | |
| 2023-11-16 | Suggest `unwrap()` on field not found for `Result`/`Option` | Esteban Küber | -2/+12 | |
| When encountering a `Result<T, _>` or `Option<T>` where `T` has a field that's being accessed, suggest calling `.unwrap()` to get to the field. | ||||
| 2023-11-16 | Suggest field typo through derefs | Esteban Küber | -1/+1 | |
| Take into account implicit dereferences when suggesting fields. ``` error[E0609]: no field `longname` on type `Arc<S>` --> $DIR/suggest-field-through-deref.rs:10:15 | LL | let _ = x.longname; | ^^^^^^^^ help: a field with a similar name exists: `long_name` ``` CC https://github.com/rust-lang/rust/issues/78374#issuecomment-719564114 | ||||
| 2023-10-05 | Add a note to duplicate diagnostics | Alex Macleod | -0/+4 | |
| 2023-09-21 | adjust how closure/generator types and rvalues are printed | Ralf Jung | -1/+1 | |
| 2023-06-12 | Adjust UI tests for `unit_bindings` | 许杰友 Jieyou Xu (Joe) | -3/+3 | |
| - Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test | ||||
| 2023-04-02 | Move some UI tests into subdirectories | jyn | -0/+32 | |
| to avoid going over the existing limit now that the ui-fulldeps tests have been moved to ui. | ||||
| 2023-02-22 | diagnostics: update test cases to refer to assoc fn with `self` as method | Michael Howell | -2/+2 | |
| 2023-02-14 | Re-add replacement logic and add comment explaining it | Esteban Küber | -4/+6 | |
| 2023-02-14 | Show the effects of weird code commented out | Esteban Küber | -6/+4 | |
| 2023-02-14 | Make removal suggestion not verbose | Esteban Küber | -6/+4 | |
| 2023-02-14 | rebase and review comments | Esteban Küber | -2/+2 | |
| 2023-02-14 | More accurate spans for arg removal suggestion | Esteban Küber | -4/+6 | |
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -2/+2 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+624 | |
