aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/replace_unwrap_with_match.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move AssistKind into AssistIdkjeremy2020-07-021-2/+1
|
* Categorize assistsJeremy Kolb2020-07-021-27/+34
|
* Snippetify unwrap -> matchAleksey Kladov2020-05-201-12/+29
|
* Explain the purpose of `ast::make` module more clearlyAleksey Kladov2020-05-201-1/+1
|
* More fluent indent APIAleksey Kladov2020-05-091-3/+7
|
* Refactor assists API to be more convenient for adding new assistsAleksey Kladov2020-05-071-24/+17
| | | | It now duplicates completion API in its shape.
* Move target to AssistLabelAleksey Kladov2020-05-061-16/+22
| | | | | Target is used for assists sorting, so we need it before we compute the action.
* Merge assits::test_helpers and testsAleksey Kladov2020-05-061-1/+1
|
* Use specific pattern when translating if-let-else to matchAleksey Kladov2020-04-291-2/+2
| | | | | | We *probably* should actually use the same machinery here, as we do for fill match arms, but just special-casing options and results seems to be a good first step.
* Move shared assist code to utilsAleksey Kladov2020-04-291-34/+18
|
* Assist: replace unwrap with matchUnreal Hoang2020-03-261-0/+177