| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2021-08-11 | Modify structured suggestion output | Esteban Küber | -6/+6 | |
| * On suggestions that include deletions, use a diff inspired output format * When suggesting addition, use `+` as underline * Color highlight modified span | ||||
| 2021-01-21 | Parse loop labels missing a leading `'` | Esteban Küber | -17/+22 | |
| When encountering the following typo: ```rust a: loop { break 'a; } ``` provide an appropriate suggestion. | ||||
| 2021-01-21 | Avoid emitting redundant "unused label" lint | Esteban Küber | -63/+17 | |
| 2021-01-21 | Add more misspelled label tests | Esteban Küber | -15/+173 | |
| 2021-01-21 | Tweak error for invalid `break expr` | Esteban Küber | -34/+71 | |
| Point at loop head on invalid `break expr`. Suggest removing `expr` or using label if available. | ||||
| 2021-01-21 | Suggest `'a` when given `a` only when appropriate | Esteban Küber | -20/+24 | |
| When encountering a name `a` that isn't resolved, but a label `'a` is found in the current ribs, only suggest `'a` if this name is the value expression of a `break` statement. Solve FIXME. | ||||
| 2021-01-21 | Account for labels when suggesting `loop` instead of `while true` | Esteban Küber | -2/+100 | |
| 2020-12-17 | Add test case for break expr with misspelled value | Daiki Ihara | -0/+65 | |
| Update src/test/ui/loops/loop-break-value.rs Co-authored-by: Ivan Tham <pickfire@riseup.net> | ||||
| 2020-05-26 | Allow unlabeled breaks from desugared `?` in labeled blocks | Samrat Man Singh | -0/+12 | |
| 2020-04-21 | Added proper explanation error code E0696 | pankajchaudhary5 | -1/+2 | |
| 2020-03-10 | more reuse in block parsing & improve diagnostics. | Mazdak Farrokhzad | -1/+4 | |
| 2020-02-13 | parser: fuse free `fn` parsing together. | Mazdak Farrokhzad | -3/+3 | |
| 2019-12-23 | more recovery in if-parsing | Mazdak Farrokhzad | -1/+1 | |
| 2019-11-25 | Tweak bad `continue` error | Esteban Küber | -7/+2 | |
| 2019-11-15 | Don't warn labels beginning with `_` | Yuki Okushi | -0/+10 | |
| 2019-11-06 | Remove "here" from "expected one of X here" | Esteban Küber | -2/+2 | |
| 2019-07-12 | Use snippet instead of pprinting statement | Esteban Küber | -2/+2 | |
| 2019-04-18 | hide `--explain` hint if error has no extended info | Andy Russell | -2/+1 | |
| 2019-03-11 | Update tests | Vadim Petrochenkov | -14/+14 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -64/+14 | |
| 2018-11-05 | Auto merge of #55451 - estebank:arg-doc, r=pnkfelix | bors | -1/+3 | |
| Custom diagnostic when trying to doc comment argument When writing ``` pub fn f( /// Comment id: u8, ) {} ``` Produce a targeted diagnostic ``` error: documentation comments cannot be applied to method arguments --> $DIR/fn-arg-doc-comment.rs:2:5 | LL | /// Comment | ^^^^^^^^^^^ doc comments are not allowed here ``` Fix #54801. | ||||
| 2018-10-28 | Use token description in "expected/found" parse messages | Esteban Küber | -0/+2 | |
| 2018-10-28 | Point at `match` when a parse failure ocurrs inside of it | Esteban Küber | -1/+3 | |
| 2018-08-19 | Fix typos found by codespell. | Matthias Krüger | -1/+1 | |
| 2018-08-14 | Merged migrated compile-fail tests and ui tests. Fixes #46841. | David Wood | -0/+232 | |
