| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-03-24 | Provide suggestion when using field access instead of path | Esteban Küber | -0/+24 | |
| When trying to access an associated constant as if it were a field of an instance, provide a suggestion for the correct syntax. | ||||
| 2019-03-24 | Add nll test | Esteban Küber | -0/+24 | |
| 2019-03-24 | When moving out of a for loop head, suggest borrowing it | Esteban Küber | -0/+34 | |
| When encountering code like the following, suggest borrowing the for loop head to avoid moving it into the for loop pattern: ``` fn main() { let a = vec![1, 2, 3]; for i in &a { for j in a { println!("{} * {} = {}", i, j, i * j); } } } ``` | ||||
| 2019-03-22 | review comments | Esteban Küber | -1/+1 | |
| 2019-03-22 | Add suggestion to use `&*var` when `&str: From<String>` is expected | Esteban Küber | -0/+23 | |
| 2019-03-22 | Hide "type ascription is experimental error" unless it's the only one | Esteban Küber | -24/+5 | |
| In order to minimize the verbosity of common syntax errors that are parsed as type ascription, hide the feature gate error unless there are no other errors being emitted by the parser. | ||||
| 2019-03-22 | Only suggest let assignment for type ascription if we find an equals sign | Esteban Küber | -9/+3 | |
| 2019-03-22 | Tweak labels | Esteban Küber | -5/+1 | |
| 2019-03-22 | Expand suggestions for type ascription parse errors | Esteban Küber | -0/+108 | |
| 2019-03-22 | Auto merge of #59035 - estebank:closure-instacall, r=davidtwco | bors | -0/+19 | |
| When encountering `||{}()`, suggest the likely intended `(||{})()` Fix #55851. | ||||
| 2019-03-18 | filter suggestions from extern prelude | Andy Russell | -0/+23 | |
| 2019-03-12 | Suggest adding lifetime to struct field | Esteban Küber | -3/+11 | |
| 2019-03-12 | review comments | Esteban Küber | -2/+2 | |
| 2019-03-12 | Suggest return lifetime when there's only one named lifetime | Esteban Küber | -0/+27 | |
| 2019-03-11 | Update tests | Vadim Petrochenkov | -48/+48 | |
| 2019-03-08 | When encountetring `||{}()`, suggest the likely intended `(||{})()` | Esteban Küber | -0/+19 | |
| 2019-03-08 | Rollup merge of #58883 - estebank:unused-closure-arg, r=varkor | Pietro Albini | -0/+40 | |
| Suggest appropriate code for unused field when destructuring pattern Fix #56472. | ||||
| 2019-03-08 | Rollup merge of #58877 - estebank:macro-borrow, r=davidtwco | Pietro Albini | -0/+33 | |
| Suggest removal of `&` when borrowing macro and appropriate Fix #58815. | ||||
| 2019-03-04 | On return type `impl Trait` for block with no expr point at last semi | Esteban Küber | -0/+20 | |
| 2019-03-02 | Suggest appropriate code for unused field when desrtucturing patttern | Esteban Küber | -0/+40 | |
| Fix #56472. | ||||
| 2019-03-02 | Suggest removal of `&` when borrowing macro and appropriate | Esteban Küber | -0/+33 | |
| Fix #58815. | ||||
| 2019-02-13 | suggestion-diagnostics: as_ref improve snippet | Dan Robertson | -8/+8 | |
| Improve the code snippet suggested in suggestion-diagnostics when suggesting the use of as_ref. | ||||
| 2019-02-07 | Update tests | varkor | -114/+97 | |
| Co-Authored-By: Gabriel Smith <yodaldevoid@users.noreply.github.com> | ||||
| 2019-01-27 | add typo suggestion to unknown attribute error | Andy Russell | -0/+40 | |
| 2019-01-25 | Combining move lifetime and type suggestions. | David Wood | -5/+106 | |
| This commit combines the move lifetime and move type suggestions so that when rustfix applies them they don't conflict with each other. | ||||
| 2019-01-25 | Suggestion moving types before associated types. | David Wood | -0/+91 | |
| This commit extends existing suggestions to move lifetimes before types in generic arguments to also suggest moving types behind associated type bindings. | ||||
| 2019-01-24 | Rollup merge of #57795 - estebank:did-you-mean, r=zackmdavis | Mazdak Farrokhzad | -9/+3 | |
| Use structured suggestion in stead of notes | ||||
| 2019-01-24 | Rollup merge of #57779 - estebank:recover-struct-fields, r=davidtwco | Mazdak Farrokhzad | -0/+53 | |
| Recover from parse errors in literal struct fields and incorrect float literals Fix #52496. | ||||
| 2019-01-20 | Use structured suggestion in stead of notes | Esteban Küber | -9/+3 | |
| 2019-01-20 | Extend incorrect float literal recovery to account for suffixes | Esteban Küber | -0/+53 | |
| 2019-01-19 | Suggest correct cast for struct fields with shorthand syntax | Esteban Küber | -0/+96 | |
| 2019-01-18 | Fix suggestions given mulitple bad lifetimes | Dan Robertson | -2/+2 | |
| When given multiple lifetimes prior to type parameters in generic parameters, do not ICE and print the correct suggestion. | ||||
| 2019-01-13 | Recover from item trailing semicolon | Esteban Küber | -0/+66 | |
| 2019-01-01 | Fix broken links to second edition TRPL. | Corey Farwell | -1/+1 | |
| Fixes https://github.com/rust-lang/rust/issues/57104. | ||||
| 2018-12-31 | Auto merge of #57047 - euclio:field-structured-suggestions, r=estebank | bors | -3/+3 | |
| use structured suggestions for nonexistent fields r? @estebank | ||||
| 2018-12-31 | use structured suggestions for nonexistent fields | Andy Russell | -3/+3 | |
| 2018-12-28 | Suggest `.as_ref()` when appropriate for `Option` and `Result` | Esteban Küber | -0/+106 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -324/+214 | |
| 2018-12-16 | Rollup merge of #56761 - estebank:path-display, r=zackmdavis | Mazdak Farrokhzad | -0/+21 | |
| Suggest using `.display()` when trying to print a `Path` Fix #38997. | ||||
| 2018-12-13 | Wording changes | Esteban Küber | -2/+2 | |
| 2018-12-12 | Suggest using `.display()` when trying to print a `Path` | Esteban Küber | -0/+21 | |
| 2018-12-12 | Account for `impl Trait` when suggesting lifetime | Esteban Küber | -0/+55 | |
| 2018-12-04 | Update ui tests | Oliver Scherer | -12/+12 | |
| 2018-12-04 | Update tests | Oliver Scherer | -22/+27 | |
| 2018-11-29 | Rollup merge of #56220 - estebank:suggest-lifetime-move, r=nikomatsakis | Guillaume Gomez | -0/+63 | |
| Suggest appropriate place for lifetime when declared after type arguments | ||||
| 2018-11-26 | Emit one diagnostic for multiple misplaced lifetimes | Esteban Küber | -3/+19 | |
| 2018-11-25 | Move lifetimes before the *first* type argument | Esteban Küber | -2/+2 | |
| 2018-11-25 | Suggest appropriate place for lifetime when declared after type arguments | Esteban Küber | -0/+47 | |
| 2018-11-24 | Suggest correct enum variant on typo | Esteban Küber | -0/+35 | |
| 2018-11-22 | Reword and fix test | Esteban Küber | -3/+3 | |
