aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/generate_from_impl_for_enum.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rename TypeRef -> TypeAleksey Kladov2020-07-311-1/+1
| | | | | | | | | | The TypeRef name comes from IntelliJ days, where you often have both type *syntax* as well as *semantical* representation of types in scope. And naming both Type is confusing. In rust-analyzer however, we use ast types as `ast::Type`, and have many more semantic counterparts to ast types, so avoiding name clash here is just confusing.
* Use ty to access most TypeRefsAleksey Kladov2020-07-301-1/+1
|
* Rename EnumVariant -> VariantAleksey Kladov2020-07-301-2/+2
|
* Add AssistKind::GenerateAleksey Kladov2020-07-031-1/+1
|
* Unify naming of generating assistsAleksey Kladov2020-07-031-0/+200