2020-11-03 13:54:44 -06:00
|
|
|
use std::iter;
|
|
|
|
|
|
|
|
use either::Either;
|
2020-11-02 14:40:52 -06:00
|
|
|
use hir::{AsName, EnumVariant, Module, ModuleDef, Name};
|
2020-08-13 09:39:16 -05:00
|
|
|
use ide_db::{defs::Definition, search::Reference, RootDatabase};
|
2020-11-24 15:25:13 -06:00
|
|
|
use ide_helpers::{
|
|
|
|
insert_use::{insert_use, ImportScope},
|
|
|
|
mod_path_to_ast,
|
|
|
|
};
|
2020-11-02 14:40:52 -06:00
|
|
|
use rustc_hash::{FxHashMap, FxHashSet};
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2020-11-12 10:13:33 -06:00
|
|
|
algo::{find_node_at_offset, SyntaxRewriter},
|
|
|
|
ast::{self, edit::IndentLevel, make, AstNode, NameOwner, VisibilityOwner},
|
|
|
|
SourceFile, SyntaxElement, SyntaxNode, T,
|
2020-05-22 15:28:30 -05:00
|
|
|
};
|
|
|
|
|
2020-11-24 15:25:13 -06:00
|
|
|
use crate::{AssistContext, AssistId, AssistKind, Assists};
|
2020-05-22 15:28:30 -05:00
|
|
|
|
2020-06-03 13:43:57 -05:00
|
|
|
// Assist: extract_struct_from_enum_variant
|
2020-05-22 15:28:30 -05:00
|
|
|
//
|
2020-06-03 13:43:57 -05:00
|
|
|
// Extracts a struct from enum variant.
|
2020-05-22 15:28:30 -05:00
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// enum A { <|>One(u32, u32) }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// struct One(pub u32, pub u32);
|
|
|
|
//
|
2020-06-03 13:43:57 -05:00
|
|
|
// enum A { One(One) }
|
2020-05-22 15:28:30 -05:00
|
|
|
// ```
|
2020-06-03 13:43:57 -05:00
|
|
|
pub(crate) fn extract_struct_from_enum_variant(
|
|
|
|
acc: &mut Assists,
|
|
|
|
ctx: &AssistContext,
|
|
|
|
) -> Option<()> {
|
2020-07-30 10:56:53 -05:00
|
|
|
let variant = ctx.find_node_at_offset::<ast::Variant>()?;
|
2020-11-03 13:54:44 -06:00
|
|
|
let field_list = extract_field_list_if_applicable(&variant)?;
|
2020-10-26 16:38:23 -05:00
|
|
|
|
2020-11-02 14:40:52 -06:00
|
|
|
let variant_name = variant.name()?;
|
2020-05-22 15:28:30 -05:00
|
|
|
let variant_hir = ctx.sema.to_def(&variant)?;
|
2020-11-03 12:55:14 -06:00
|
|
|
if existing_definition(ctx.db(), &variant_name, &variant_hir) {
|
2020-05-22 15:28:30 -05:00
|
|
|
return None;
|
|
|
|
}
|
2020-11-03 13:54:44 -06:00
|
|
|
|
2020-05-23 04:53:02 -05:00
|
|
|
let enum_ast = variant.parent_enum();
|
2020-06-05 06:17:17 -05:00
|
|
|
let enum_hir = ctx.sema.to_def(&enum_ast)?;
|
2020-05-22 15:28:30 -05:00
|
|
|
let target = variant.syntax().text_range();
|
2020-06-08 17:01:40 -05:00
|
|
|
acc.add(
|
2020-07-02 16:48:35 -05:00
|
|
|
AssistId("extract_struct_from_enum_variant", AssistKind::RefactorRewrite),
|
2020-05-22 15:28:30 -05:00
|
|
|
"Extract struct from enum variant",
|
|
|
|
target,
|
2020-06-08 17:01:40 -05:00
|
|
|
|builder| {
|
2020-11-03 13:54:44 -06:00
|
|
|
let variant_hir_name = variant_hir.name(ctx.db());
|
|
|
|
let enum_module_def = ModuleDef::from(enum_hir);
|
|
|
|
let usages =
|
|
|
|
Definition::ModuleDef(ModuleDef::EnumVariant(variant_hir)).usages(&ctx.sema).all();
|
2020-11-02 14:40:52 -06:00
|
|
|
|
2020-05-24 07:53:12 -05:00
|
|
|
let mut visited_modules_set = FxHashSet::default();
|
2020-11-03 13:54:44 -06:00
|
|
|
let current_module = enum_hir.module(ctx.db());
|
2020-05-23 04:53:02 -05:00
|
|
|
visited_modules_set.insert(current_module);
|
2020-11-02 14:40:52 -06:00
|
|
|
let mut rewriters = FxHashMap::default();
|
2020-11-03 13:54:44 -06:00
|
|
|
for reference in usages {
|
2020-11-02 14:40:52 -06:00
|
|
|
let rewriter = rewriters
|
|
|
|
.entry(reference.file_range.file_id)
|
|
|
|
.or_insert_with(SyntaxRewriter::default);
|
2020-05-22 15:28:30 -05:00
|
|
|
let source_file = ctx.sema.parse(reference.file_range.file_id);
|
|
|
|
update_reference(
|
|
|
|
ctx,
|
2020-11-02 14:40:52 -06:00
|
|
|
rewriter,
|
2020-05-22 15:28:30 -05:00
|
|
|
reference,
|
|
|
|
&source_file,
|
2020-06-05 06:17:17 -05:00
|
|
|
&enum_module_def,
|
|
|
|
&variant_hir_name,
|
2020-05-22 18:23:40 -05:00
|
|
|
&mut visited_modules_set,
|
2020-05-22 15:28:30 -05:00
|
|
|
);
|
|
|
|
}
|
2020-11-02 14:40:52 -06:00
|
|
|
let mut rewriter =
|
|
|
|
rewriters.remove(&ctx.frange.file_id).unwrap_or_else(SyntaxRewriter::default);
|
|
|
|
for (file_id, rewriter) in rewriters {
|
|
|
|
builder.edit_file(file_id);
|
|
|
|
builder.rewrite(rewriter);
|
|
|
|
}
|
|
|
|
builder.edit_file(ctx.frange.file_id);
|
2020-11-03 13:54:44 -06:00
|
|
|
update_variant(&mut rewriter, &variant);
|
2020-05-22 15:28:30 -05:00
|
|
|
extract_struct_def(
|
2020-11-02 14:40:52 -06:00
|
|
|
&mut rewriter,
|
2020-08-13 04:47:31 -05:00
|
|
|
&enum_ast,
|
2020-11-02 14:40:52 -06:00
|
|
|
variant_name.clone(),
|
|
|
|
&field_list,
|
|
|
|
&variant.parent_enum().syntax().clone().into(),
|
2020-11-03 13:54:44 -06:00
|
|
|
enum_ast.visibility(),
|
2020-05-22 15:28:30 -05:00
|
|
|
);
|
2020-11-02 14:40:52 -06:00
|
|
|
builder.rewrite(rewriter);
|
2020-05-22 15:28:30 -05:00
|
|
|
},
|
2020-06-05 04:45:41 -05:00
|
|
|
)
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|
|
|
|
|
2020-11-03 13:54:44 -06:00
|
|
|
fn extract_field_list_if_applicable(
|
|
|
|
variant: &ast::Variant,
|
|
|
|
) -> Option<Either<ast::RecordFieldList, ast::TupleFieldList>> {
|
|
|
|
match variant.kind() {
|
|
|
|
ast::StructKind::Record(field_list) if field_list.fields().next().is_some() => {
|
|
|
|
Some(Either::Left(field_list))
|
|
|
|
}
|
|
|
|
ast::StructKind::Tuple(field_list) if field_list.fields().count() > 1 => {
|
|
|
|
Some(Either::Right(field_list))
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 12:55:14 -06:00
|
|
|
fn existing_definition(db: &RootDatabase, variant_name: &ast::Name, variant: &EnumVariant) -> bool {
|
2020-05-22 18:41:08 -05:00
|
|
|
variant
|
|
|
|
.parent_enum(db)
|
|
|
|
.module(db)
|
|
|
|
.scope(db, None)
|
|
|
|
.into_iter()
|
2020-11-03 12:55:14 -06:00
|
|
|
.filter(|(_, def)| match def {
|
|
|
|
// only check type-namespace
|
|
|
|
hir::ScopeDef::ModuleDef(def) => matches!(def,
|
|
|
|
ModuleDef::Module(_) | ModuleDef::Adt(_) |
|
|
|
|
ModuleDef::EnumVariant(_) | ModuleDef::Trait(_) |
|
|
|
|
ModuleDef::TypeAlias(_) | ModuleDef::BuiltinType(_)
|
|
|
|
),
|
|
|
|
_ => false,
|
|
|
|
})
|
2020-11-02 14:40:52 -06:00
|
|
|
.any(|(name, _)| name == variant_name.as_name())
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|
|
|
|
|
2020-05-22 18:23:40 -05:00
|
|
|
fn insert_import(
|
2020-05-22 15:28:30 -05:00
|
|
|
ctx: &AssistContext,
|
2020-11-02 14:40:52 -06:00
|
|
|
rewriter: &mut SyntaxRewriter,
|
2020-11-12 10:13:33 -06:00
|
|
|
scope_node: &SyntaxNode,
|
2020-05-22 15:28:30 -05:00
|
|
|
module: &Module,
|
2020-06-05 06:17:17 -05:00
|
|
|
enum_module_def: &ModuleDef,
|
|
|
|
variant_hir_name: &Name,
|
2020-05-22 15:28:30 -05:00
|
|
|
) -> Option<()> {
|
2020-07-01 02:14:23 -05:00
|
|
|
let db = ctx.db();
|
2020-11-12 10:32:45 -06:00
|
|
|
let mod_path = module.find_use_path_prefixed(
|
|
|
|
db,
|
|
|
|
enum_module_def.clone(),
|
|
|
|
ctx.config.insert_use.prefix_kind,
|
|
|
|
);
|
2020-11-12 10:47:58 -06:00
|
|
|
if let Some(mut mod_path) = mod_path {
|
2020-05-22 15:28:30 -05:00
|
|
|
mod_path.segments.pop();
|
2020-06-05 06:17:17 -05:00
|
|
|
mod_path.segments.push(variant_hir_name.clone());
|
2020-09-18 15:40:11 -05:00
|
|
|
let scope = ImportScope::find_insert_use_container(scope_node, &ctx.sema)?;
|
2020-11-02 14:40:52 -06:00
|
|
|
*rewriter += insert_use(&scope, mod_path_to_ast(&mod_path), ctx.config.insert_use.merge);
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|
|
|
|
Some(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extract_struct_def(
|
2020-11-02 14:40:52 -06:00
|
|
|
rewriter: &mut SyntaxRewriter,
|
2020-08-13 04:47:31 -05:00
|
|
|
enum_: &ast::Enum,
|
2020-11-02 14:40:52 -06:00
|
|
|
variant_name: ast::Name,
|
2020-11-03 13:54:44 -06:00
|
|
|
field_list: &Either<ast::RecordFieldList, ast::TupleFieldList>,
|
2020-11-02 14:40:52 -06:00
|
|
|
start_offset: &SyntaxElement,
|
|
|
|
visibility: Option<ast::Visibility>,
|
2020-05-22 15:28:30 -05:00
|
|
|
) -> Option<()> {
|
2020-11-03 13:54:44 -06:00
|
|
|
let pub_vis = Some(make::visibility_pub());
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
Either::Right(field_list) => make::tuple_field_list(
|
|
|
|
field_list
|
|
|
|
.fields()
|
|
|
|
.flat_map(|field| Some(make::tuple_field(pub_vis.clone(), field.ty()?))),
|
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
};
|
2020-05-22 15:28:30 -05:00
|
|
|
|
2020-11-02 14:40:52 -06:00
|
|
|
rewriter.insert_before(
|
|
|
|
start_offset,
|
2020-11-03 13:54:44 -06:00
|
|
|
make::struct_(visibility, variant_name, None, field_list).syntax(),
|
2020-05-22 15:28:30 -05:00
|
|
|
);
|
2020-11-02 14:40:52 -06:00
|
|
|
rewriter.insert_before(start_offset, &make::tokens::blank_line());
|
|
|
|
|
|
|
|
if let indent_level @ 1..=usize::MAX = IndentLevel::from_node(enum_.syntax()).0 as usize {
|
|
|
|
rewriter
|
|
|
|
.insert_before(start_offset, &make::tokens::whitespace(&" ".repeat(4 * indent_level)));
|
|
|
|
}
|
2020-05-22 15:28:30 -05:00
|
|
|
Some(())
|
|
|
|
}
|
|
|
|
|
2020-11-03 13:54:44 -06:00
|
|
|
fn update_variant(rewriter: &mut SyntaxRewriter, variant: &ast::Variant) -> Option<()> {
|
|
|
|
let name = variant.name()?;
|
|
|
|
let tuple_field = make::tuple_field(None, make::ty(name.text()));
|
|
|
|
let replacement = make::variant(
|
|
|
|
name,
|
|
|
|
Some(ast::FieldList::TupleFieldList(make::tuple_field_list(iter::once(tuple_field)))),
|
|
|
|
);
|
|
|
|
rewriter.replace(variant.syntax(), replacement.syntax());
|
2020-05-22 15:28:30 -05:00
|
|
|
Some(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_reference(
|
|
|
|
ctx: &AssistContext,
|
2020-11-02 14:40:52 -06:00
|
|
|
rewriter: &mut SyntaxRewriter,
|
2020-05-22 15:28:30 -05:00
|
|
|
reference: Reference,
|
|
|
|
source_file: &SourceFile,
|
2020-11-02 14:40:52 -06:00
|
|
|
enum_module_def: &ModuleDef,
|
|
|
|
variant_hir_name: &Name,
|
|
|
|
visited_modules_set: &mut FxHashSet<Module>,
|
2020-05-22 15:28:30 -05:00
|
|
|
) -> Option<()> {
|
2020-11-12 10:13:33 -06:00
|
|
|
let offset = reference.file_range.range.start();
|
|
|
|
let (segment, expr) = if let Some(path_expr) =
|
|
|
|
find_node_at_offset::<ast::PathExpr>(source_file.syntax(), offset)
|
|
|
|
{
|
|
|
|
// tuple variant
|
|
|
|
(path_expr.path()?.segment()?, path_expr.syntax().parent()?.clone())
|
|
|
|
} else if let Some(record_expr) =
|
|
|
|
find_node_at_offset::<ast::RecordExpr>(source_file.syntax(), offset)
|
|
|
|
{
|
|
|
|
// record variant
|
|
|
|
(record_expr.path()?.segment()?, record_expr.syntax().clone())
|
|
|
|
} else {
|
|
|
|
return None;
|
|
|
|
};
|
|
|
|
|
|
|
|
let module = ctx.sema.scope(&expr).module()?;
|
2020-06-08 17:01:40 -05:00
|
|
|
if !visited_modules_set.contains(&module) {
|
2020-11-12 10:13:33 -06:00
|
|
|
if insert_import(ctx, rewriter, &expr, &module, enum_module_def, variant_hir_name).is_some()
|
2020-06-08 17:01:40 -05:00
|
|
|
{
|
|
|
|
visited_modules_set.insert(module);
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|
2020-06-08 17:01:40 -05:00
|
|
|
}
|
2020-11-12 10:13:33 -06:00
|
|
|
rewriter.insert_after(segment.syntax(), &make::token(T!['(']));
|
|
|
|
rewriter.insert_after(segment.syntax(), segment.syntax());
|
|
|
|
rewriter.insert_after(&expr, &make::token(T![')']));
|
2020-11-02 14:40:52 -06:00
|
|
|
Some(())
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-11-24 15:25:13 -06:00
|
|
|
use ide_helpers::FamousDefs;
|
|
|
|
|
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
2020-05-22 15:28:30 -05:00
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2020-11-03 12:55:14 -06:00
|
|
|
fn test_extract_struct_several_fields_tuple() {
|
2020-05-22 15:28:30 -05:00
|
|
|
check_assist(
|
2020-06-03 13:43:57 -05:00
|
|
|
extract_struct_from_enum_variant,
|
2020-05-22 15:28:30 -05:00
|
|
|
"enum A { <|>One(u32, u32) }",
|
|
|
|
r#"struct One(pub u32, pub u32);
|
|
|
|
|
2020-11-03 12:55:14 -06:00
|
|
|
enum A { One(One) }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_struct_several_fields_named() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
"enum A { <|>One { foo: u32, bar: u32 } }",
|
2020-11-03 13:54:44 -06:00
|
|
|
r#"struct One{ pub foo: u32, pub bar: u32 }
|
|
|
|
|
|
|
|
enum A { One(One) }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_struct_one_field_named() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
"enum A { <|>One { foo: u32 } }",
|
|
|
|
r#"struct One{ pub foo: u32 }
|
2020-11-03 12:55:14 -06:00
|
|
|
|
|
|
|
enum A { One(One) }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_enum_variant_name_value_namespace() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
r#"const One: () = ();
|
|
|
|
enum A { <|>One(u32, u32) }"#,
|
|
|
|
r#"const One: () = ();
|
|
|
|
struct One(pub u32, pub u32);
|
|
|
|
|
2020-05-22 15:28:30 -05:00
|
|
|
enum A { One(One) }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_struct_pub_visibility() {
|
|
|
|
check_assist(
|
2020-06-03 13:43:57 -05:00
|
|
|
extract_struct_from_enum_variant,
|
2020-05-22 15:28:30 -05:00
|
|
|
"pub enum A { <|>One(u32, u32) }",
|
|
|
|
r#"pub struct One(pub u32, pub u32);
|
|
|
|
|
|
|
|
pub enum A { One(One) }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_struct_with_complex_imports() {
|
|
|
|
check_assist(
|
2020-06-03 13:43:57 -05:00
|
|
|
extract_struct_from_enum_variant,
|
2020-05-22 15:28:30 -05:00
|
|
|
r#"mod my_mod {
|
|
|
|
fn another_fn() {
|
|
|
|
let m = my_other_mod::MyEnum::MyField(1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod my_other_mod {
|
|
|
|
fn another_fn() {
|
|
|
|
let m = MyEnum::MyField(1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum MyEnum {
|
|
|
|
<|>MyField(u8, u8),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn another_fn() {
|
|
|
|
let m = my_mod::my_other_mod::MyEnum::MyField(1, 1);
|
|
|
|
}"#,
|
|
|
|
r#"use my_mod::my_other_mod::MyField;
|
|
|
|
|
|
|
|
mod my_mod {
|
2020-11-12 10:32:45 -06:00
|
|
|
use self::my_other_mod::MyField;
|
2020-05-22 15:28:30 -05:00
|
|
|
|
|
|
|
fn another_fn() {
|
|
|
|
let m = my_other_mod::MyEnum::MyField(MyField(1, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod my_other_mod {
|
|
|
|
fn another_fn() {
|
|
|
|
let m = MyEnum::MyField(MyField(1, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MyField(pub u8, pub u8);
|
|
|
|
|
|
|
|
pub enum MyEnum {
|
|
|
|
MyField(MyField),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn another_fn() {
|
|
|
|
let m = my_mod::my_other_mod::MyEnum::MyField(MyField(1, 1));
|
|
|
|
}"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-12 10:13:33 -06:00
|
|
|
#[test]
|
|
|
|
fn extract_record_fix_references() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
r#"
|
|
|
|
enum E {
|
|
|
|
<|>V { i: i32, j: i32 }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn f() {
|
|
|
|
let e = E::V { i: 9, j: 2 };
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct V{ pub i: i32, pub j: i32 }
|
|
|
|
|
|
|
|
enum E {
|
|
|
|
V(V)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn f() {
|
|
|
|
let e = E::V(V { i: 9, j: 2 });
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-11-09 07:22:45 -06:00
|
|
|
#[test]
|
|
|
|
fn test_several_files() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
r#"
|
|
|
|
//- /main.rs
|
|
|
|
enum E {
|
|
|
|
<|>V(i32, i32)
|
|
|
|
}
|
|
|
|
mod foo;
|
|
|
|
|
|
|
|
//- /foo.rs
|
|
|
|
use crate::E;
|
|
|
|
fn f() {
|
|
|
|
let e = E::V(9, 2);
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
//- /main.rs
|
|
|
|
struct V(pub i32, pub i32);
|
|
|
|
|
|
|
|
enum E {
|
|
|
|
V(V)
|
|
|
|
}
|
|
|
|
mod foo;
|
|
|
|
|
|
|
|
//- /foo.rs
|
2020-11-12 10:32:45 -06:00
|
|
|
use crate::{E, V};
|
2020-11-09 07:22:45 -06:00
|
|
|
fn f() {
|
|
|
|
let e = E::V(V(9, 2));
|
|
|
|
}
|
2020-11-09 09:40:41 -06:00
|
|
|
"#,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_several_files_record() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
r#"
|
|
|
|
//- /main.rs
|
|
|
|
enum E {
|
|
|
|
<|>V { i: i32, j: i32 }
|
|
|
|
}
|
|
|
|
mod foo;
|
|
|
|
|
|
|
|
//- /foo.rs
|
|
|
|
use crate::E;
|
|
|
|
fn f() {
|
|
|
|
let e = E::V { i: 9, j: 2 };
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
2020-11-12 10:13:33 -06:00
|
|
|
//- /main.rs
|
2020-11-09 09:40:41 -06:00
|
|
|
struct V{ pub i: i32, pub j: i32 }
|
|
|
|
|
|
|
|
enum E {
|
|
|
|
V(V)
|
|
|
|
}
|
|
|
|
mod foo;
|
|
|
|
|
2020-11-12 10:13:33 -06:00
|
|
|
//- /foo.rs
|
2020-11-12 10:32:45 -06:00
|
|
|
use crate::{E, V};
|
2020-11-12 10:13:33 -06:00
|
|
|
fn f() {
|
|
|
|
let e = E::V(V { i: 9, j: 2 });
|
|
|
|
}
|
2020-11-09 07:22:45 -06:00
|
|
|
"#,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-11-12 10:47:58 -06:00
|
|
|
#[test]
|
|
|
|
fn test_extract_struct_record_nested_call_exp() {
|
|
|
|
check_assist(
|
|
|
|
extract_struct_from_enum_variant,
|
|
|
|
r#"
|
|
|
|
enum A { <|>One { a: u32, b: u32 } }
|
|
|
|
|
|
|
|
struct B(A);
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
let _ = B(A::One { a: 1, b: 2 });
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct One{ pub a: u32, pub b: u32 }
|
|
|
|
|
|
|
|
enum A { One(One) }
|
|
|
|
|
|
|
|
struct B(A);
|
|
|
|
|
|
|
|
fn foo() {
|
|
|
|
let _ = B(A::One(One { a: 1, b: 2 }));
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-05-22 15:28:30 -05:00
|
|
|
fn check_not_applicable(ra_fixture: &str) {
|
|
|
|
let fixture =
|
2020-06-22 10:30:23 -05:00
|
|
|
format!("//- /main.rs crate:main deps:core\n{}\n{}", ra_fixture, FamousDefs::FIXTURE);
|
2020-06-03 13:43:57 -05:00
|
|
|
check_assist_not_applicable(extract_struct_from_enum_variant, &fixture)
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_enum_not_applicable_for_element_with_no_fields() {
|
|
|
|
check_not_applicable("enum A { <|>One }");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_enum_not_applicable_if_struct_exists() {
|
|
|
|
check_not_applicable(
|
|
|
|
r#"struct One;
|
2020-11-03 12:55:14 -06:00
|
|
|
enum A { <|>One(u8, u32) }"#,
|
2020-05-22 15:28:30 -05:00
|
|
|
);
|
|
|
|
}
|
2020-10-26 16:38:23 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_not_applicable_one_field() {
|
|
|
|
check_not_applicable(r"enum A { <|>One(u32) }");
|
|
|
|
}
|
2020-11-03 13:54:44 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_not_applicable_no_field_tuple() {
|
|
|
|
check_not_applicable(r"enum A { <|>None() }");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_extract_not_applicable_no_field_named() {
|
|
|
|
check_not_applicable(r"enum A { <|>None {} }");
|
|
|
|
}
|
2020-05-22 15:28:30 -05:00
|
|
|
}
|