| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-26 | fix: Add col separator before secondary messages with no source | Scott Schafer | -0/+1 | |
| 2025-07-31 | Extend `is_case_difference` to handle digit-letter confusables | xizheyin | -4/+4 | |
| Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | ||||
| 2025-06-11 | Add expectation for `{` when parsing lone coroutine qualifiers | Lukas Wirth | -2/+2 | |
| 2025-03-06 | Use closure parse code | Santiago Pastorino | -2/+2 | |
| 2025-02-21 | More sophisticated span trimming | Michael Goulet | -3/+2 | |
| 2025-02-14 | Trim suggestion parts to the subset that is purely additive | Michael Goulet | -1/+1 | |
| 2025-02-14 | Use underline suggestions for purely 'additive' replacements | Michael Goulet | -3/+2 | |
| 2025-02-10 | Show diff suggestion format on verbose replacement | Esteban Küber | -53/+80 | |
| ``` 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-11-24 | parse guard patterns | Nadrieril | -2/+2 | |
| Co-authored-by: Max Niederman <max@maxniederman.com> | ||||
| 2024-09-12 | Implement a Method to Seal `DiagInner`'s Suggestions | Veera | -8/+0 | |
| 2024-09-06 | Add Suggestions for Misspelled Keywords | Veera | -5/+139 | |
| This PR detects misspelled keywords using two heuristics: 1. Lowercasing the unexpected identifier. 2. Using edit distance to find a keyword similar to the unexpected identifier. However, it does not detect each and every misspelled keyword to minimize false positives and ambiguities. More details about the implementation can be found in the comments. | ||||
| 2024-09-02 | Update Tests | Veera | -0/+409 | |
