From 7fefac4bdc5a08cee6b682e7def921f6b8c1384c Mon Sep 17 00:00:00 2001 From: DropDemBits Date: Tue, 11 May 2021 02:54:48 -0400 Subject: Keep comments and attrs when extracting struct from enum variant --- .../handlers/extract_struct_from_enum_variant.rs | 135 +++++++++++++++++++-- 1 file changed, 126 insertions(+), 9 deletions(-) (limited to 'crates/ide_assists/src/handlers') diff --git a/crates/ide_assists/src/handlers/extract_struct_from_enum_variant.rs b/crates/ide_assists/src/handlers/extract_struct_from_enum_variant.rs index 66f274fa7..8e2178391 100644 --- a/crates/ide_assists/src/handlers/extract_struct_from_enum_variant.rs +++ b/crates/ide_assists/src/handlers/extract_struct_from_enum_variant.rs @@ -151,20 +151,37 @@ fn create_struct_def( field_list: &Either, visibility: Option, ) -> ast::Struct { - let pub_vis = Some(make::visibility_pub()); + let pub_vis = make::visibility_pub(); + + let insert_pub = |node: &'_ SyntaxNode| { + let pub_vis = pub_vis.clone_for_update(); + ted::insert(ted::Position::before(node), pub_vis.syntax()); + }; + + // for fields without any existing visibility, use pub visibility let field_list = match field_list { Either::Left(field_list) => { - make::record_field_list(field_list.fields().flat_map(|field| { - Some(make::record_field(pub_vis.clone(), field.name()?, field.ty()?)) - })) - .into() + let field_list = field_list.clone_for_update(); + + field_list + .fields() + .filter(|field| field.visibility().is_none()) + .filter_map(|field| field.name()) + .for_each(|it| insert_pub(it.syntax())); + + field_list.into() } - Either::Right(field_list) => make::tuple_field_list( + Either::Right(field_list) => { + let field_list = field_list.clone_for_update(); + field_list .fields() - .flat_map(|field| Some(make::tuple_field(pub_vis.clone(), field.ty()?))), - ) - .into(), + .filter(|field| field.visibility().is_none()) + .filter_map(|field| field.ty()) + .for_each(|it| insert_pub(it.syntax())); + + field_list.into() + } }; make::struct_(visibility, variant_name, None, field_list).clone_for_update() @@ -290,6 +307,106 @@ enum A { One(One) }"#, "enum A { $0One { foo: u32 } }", r#"struct One{ pub foo: u32 } +enum A { One(One) }"#, + ); + } + + #[test] + fn test_extract_struct_keep_comments_and_attrs_one_field_named() { + check_assist( + extract_struct_from_enum_variant, + r#" +enum A { + $0One { + // leading comment + /// doc comment + #[an_attr] + foo: u32 + // trailing comment + } +}"#, + r#" +struct One{ + // leading comment + /// doc comment + #[an_attr] + pub foo: u32 + // trailing comment + } + +enum A { + One(One) +}"#, + ); + } + + #[test] + fn test_extract_struct_keep_comments_and_attrs_several_fields_named() { + check_assist( + extract_struct_from_enum_variant, + r#" +enum A { + $0One { + // comment + /// doc + #[attr] + foo: u32, + // comment + #[attr] + /// doc + bar: u32 + } +}"#, + r#" +struct One{ + // comment + /// doc + #[attr] + pub foo: u32, + // comment + #[attr] + /// doc + pub bar: u32 + } + +enum A { + One(One) +}"#, + ); + } + + #[test] + fn test_extract_struct_keep_comments_and_attrs_several_fields_tuple() { + check_assist( + extract_struct_from_enum_variant, + "enum A { $0One(/* comment */ #[attr] u32, /* another */ u32 /* tail */) }", + r#" +struct One(/* comment */ #[attr] pub u32, /* another */ pub u32 /* tail */); + +enum A { One(One) }"#, + ); + } + + #[test] + fn test_extract_struct_keep_existing_visibility_named() { + check_assist( + extract_struct_from_enum_variant, + "enum A { $0One{ pub a: u32, pub(crate) b: u32, pub(super) c: u32, d: u32 } }", + r#" +struct One{ pub a: u32, pub(crate) b: u32, pub(super) c: u32, pub d: u32 } + +enum A { One(One) }"#, + ); + } + + #[test] + fn test_extract_struct_keep_existing_visibility_tuple() { + check_assist( + extract_struct_from_enum_variant, + "enum A { $0One(pub u32, pub(crate) u32, pub(super) u32, u32) }", + r#" +struct One(pub u32, pub(crate) u32, pub(super) u32, pub u32); + enum A { One(One) }"#, ); } -- cgit v1.2.3