| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -37/+0 | |
| 2020-05-15 | Remove redundant backtick in error message. | Eric Huss | -2/+2 | |
| The value passed in already has backticks surrounding the text. | ||||
| 2019-11-21 | Point at type in `let` assignment on type errors | Esteban Küber | -2/+6 | |
| 2019-11-18 | Surround types with backticks in type errors | Esteban Küber | -2/+2 | |
| 2019-11-18 | Remove E0308 note when primary label has all info | Esteban Küber | -6/+0 | |
| 2019-11-18 | review comments: tweak prefix strings | Esteban Küber | -4/+4 | |
| 2019-10-28 | Use heuristics to recover parsing of missing `;` | Esteban Küber | -10/+10 | |
| - Detect `,` and `:` typos where `;` was intended. - When the next token could have been the start of a new statement, detect a missing semicolon. | ||||
| 2019-04-11 | review comments | Esteban Küber | -2/+2 | |
| 2019-04-10 | Recover from missing semicolon based on the found token | Esteban Küber | -0/+39 | |
| When encountering one of a few keywords when a semicolon was expected, suggest the semicolon and recover: ``` error: expected one of `.`, `;`, `?`, or an operator, found `let` --> $DIR/recover-missing-semi.rs:4:5 | LL | let _: usize = () | - help: missing semicolon here LL | LL | let _ = 3; | ^^^ error[E0308]: mismatched types --> $DIR/recover-missing-semi.rs:2:20 | LL | let _: usize = () | ^^ expected usize, found () | = note: expected type `usize` found type `()` ``` | ||||
