| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-03-01 | Detect more cases of `=` to `:` typo | Esteban Küber | -9/+9 | |
| When a `Local` is fully parsed, but not followed by a `;`, keep the `:` span arround and mention it. If the type could continue being parsed as an expression, suggest replacing the `:` with a `=`. ``` error: expected one of `!`, `+`, `->`, `::`, `;`, or `=`, found `.` --> file.rs:2:32 | 2 | let _: std::env::temp_dir().join("foo"); | - ^ expected one of `!`, `+`, `->`, `::`, `;`, or `=` | | | while parsing the type for `_` | help: use `=` if you meant to assign ``` Fix #119665. | ||||
| 2024-01-31 | Remove a has_errors check that does not prevent follow up error noise | Oli Scherer | -2/+2 | |
| 2023-12-01 | Tweak unclosed generics errors | Esteban Küber | -6/+4 | |
| Remove unnecessary span label for parse errors that already have a suggestion. Provide structured suggestion to close generics in more cases. | ||||
| 2023-02-09 | Don't expose type parameters and implementation details from macro expansion | 许杰友 Jieyou Xu (Joe) | -6/+6 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+66 | |
