| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -18/+27 | |
| ``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ``` | ||||
| 2024-04-15 | Use /* value */ as a placeholder | Michael Goulet | -10/+10 | |
| 2024-04-10 | Handle more cases of "values to suggest" given a type | Esteban Küber | -2/+2 | |
| Add handling for `String`, `Box`, `Option` and `Result`. | ||||
| 2024-04-09 | Tweak value suggestions in `borrowck` and `hir_analysis` | Esteban Küber | -30/+47 | |
| Unify the output of `suggest_assign_value` and `ty_kind_suggestion`. Ideally we'd make these a single function, but doing so would likely require modify the crate dependency tree. | ||||
| 2023-10-04 | Point to where missing return type should go | Michael Goulet | -1/+1 | |
| 2023-09-25 | Use verbose suggestion for `break` without value | Esteban Küber | -20/+30 | |
| 2023-09-25 | Handle all arbitrary `loop` nesting in `break` type errors | Esteban Küber | -3/+79 | |
| 2023-09-25 | Account for more cases of nested `loop`s for `break` type mismatches | Esteban Küber | -7/+28 | |
| 2023-09-25 | Handle yet another case of `break` type mismatch | Esteban Küber | -1/+4 | |
| 2023-09-25 | Point at previous breaks that have the expected type | Esteban Küber | -1/+10 | |
| 2023-09-22 | Point at cause of expectation of `break` value when possible | Esteban Küber | -1/+21 | |
| Fix #115905. | ||||
| 2023-01-30 | Modify primary span label for E0308 | Esteban Küber | -1/+1 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+193 | |
