| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-02-14 | Re-add replacement logic and add comment explaining it | Esteban Küber | -8/+12 | |
| 2023-02-14 | Show the effects of weird code commented out | Esteban Küber | -12/+8 | |
| 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 | -4/+4 | |
| The previous output was unintuitive to users. | ||||
| 2023-01-13 | Emit a hint for bad call return types due to generic arguments | Robin Schroer | -0/+21 | |
| When the return type of a function call depends on the type of an argument, e.g. ``` fn foo<T>(x: T) -> T { x } ``` and the expected type is set due to either an explicitly typed binding, or because the call to the function is in a tail position without semicolon, the current error implies that the argument in the call has the wrong type. This new hint highlights that the expected type doesn't match the returned type, which matches the argument type, and that that's why we're flagging the argument type. Fixes #43608. | ||||
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+86 | |
