Match indentation of generated delegate method
This commit is contained in:
parent
58e2053327
commit
09a3bd5899
@ -3,8 +3,7 @@
|
|||||||
use hir::{self, HasCrate, HasSource, HasVisibility};
|
use hir::{self, HasCrate, HasSource, HasVisibility};
|
||||||
use syntax::{
|
use syntax::{
|
||||||
ast::{
|
ast::{
|
||||||
self, edit::IndentLevel, edit_in_place::Indent, make, AstNode, HasGenericParams, HasName,
|
self, edit_in_place::Indent, make, AstNode, HasGenericParams, HasName, HasVisibility as _,
|
||||||
HasVisibility as _,
|
|
||||||
},
|
},
|
||||||
ted,
|
ted,
|
||||||
};
|
};
|
||||||
@ -141,7 +140,6 @@ pub(crate) fn generate_delegate_methods(acc: &mut Assists, ctx: &AssistContext<'
|
|||||||
is_unsafe,
|
is_unsafe,
|
||||||
)
|
)
|
||||||
.clone_for_update();
|
.clone_for_update();
|
||||||
f.reindent_to(IndentLevel(1));
|
|
||||||
|
|
||||||
// Create or update an impl block, attach the function to it,
|
// Create or update an impl block, attach the function to it,
|
||||||
// then insert into our code.
|
// then insert into our code.
|
||||||
@ -150,6 +148,9 @@ pub(crate) fn generate_delegate_methods(acc: &mut Assists, ctx: &AssistContext<'
|
|||||||
// Remember where in our source our `impl` block lives.
|
// Remember where in our source our `impl` block lives.
|
||||||
let impl_def = edit.make_mut(impl_def);
|
let impl_def = edit.make_mut(impl_def);
|
||||||
|
|
||||||
|
// Fixup function indentation.
|
||||||
|
f.reindent_to(impl_def.indent_level() + 1);
|
||||||
|
|
||||||
// Attach the function to the impl block.
|
// Attach the function to the impl block.
|
||||||
let assoc_items = impl_def.get_or_create_assoc_item_list();
|
let assoc_items = impl_def.get_or_create_assoc_item_list();
|
||||||
assoc_items.add_item(f.clone().into());
|
assoc_items.add_item(f.clone().into());
|
||||||
@ -177,15 +178,22 @@ pub(crate) fn generate_delegate_methods(acc: &mut Assists, ctx: &AssistContext<'
|
|||||||
)
|
)
|
||||||
.clone_for_update();
|
.clone_for_update();
|
||||||
|
|
||||||
|
// Fixup function indentation.
|
||||||
|
f.reindent_to(impl_def.indent_level() + 1);
|
||||||
|
|
||||||
let assoc_items = impl_def.get_or_create_assoc_item_list();
|
let assoc_items = impl_def.get_or_create_assoc_item_list();
|
||||||
assoc_items.add_item(f.clone().into());
|
assoc_items.add_item(f.clone().into());
|
||||||
|
|
||||||
|
// Fixup impl_def indentation
|
||||||
|
let indent = strukt.indent_level();
|
||||||
|
impl_def.reindent_to(indent);
|
||||||
|
|
||||||
// Insert the impl block.
|
// Insert the impl block.
|
||||||
let strukt = edit.make_mut(strukt.clone());
|
let strukt = edit.make_mut(strukt.clone());
|
||||||
ted::insert_all(
|
ted::insert_all(
|
||||||
ted::Position::after(strukt.syntax()),
|
ted::Position::after(strukt.syntax()),
|
||||||
vec![
|
vec![
|
||||||
make::tokens::blank_line().into(),
|
make::tokens::whitespace(&format!("\n\n{indent}")).into(),
|
||||||
impl_def.syntax().clone().into(),
|
impl_def.syntax().clone().into(),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
@ -242,6 +250,45 @@ impl Person {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_generate_delegate_create_impl_block_match_indent() {
|
||||||
|
check_assist(
|
||||||
|
generate_delegate_methods,
|
||||||
|
r#"
|
||||||
|
mod indent {
|
||||||
|
struct Age(u8);
|
||||||
|
impl Age {
|
||||||
|
fn age(&self) -> u8 {
|
||||||
|
self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Person {
|
||||||
|
ag$0e: Age,
|
||||||
|
}
|
||||||
|
}"#,
|
||||||
|
r#"
|
||||||
|
mod indent {
|
||||||
|
struct Age(u8);
|
||||||
|
impl Age {
|
||||||
|
fn age(&self) -> u8 {
|
||||||
|
self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Person {
|
||||||
|
age: Age,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Person {
|
||||||
|
$0fn age(&self) -> u8 {
|
||||||
|
self.age.age()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_generate_delegate_update_impl_block() {
|
fn test_generate_delegate_update_impl_block() {
|
||||||
check_assist(
|
check_assist(
|
||||||
@ -279,6 +326,47 @@ impl Person {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_generate_delegate_update_impl_block_match_indent() {
|
||||||
|
check_assist(
|
||||||
|
generate_delegate_methods,
|
||||||
|
r#"
|
||||||
|
mod indent {
|
||||||
|
struct Age(u8);
|
||||||
|
impl Age {
|
||||||
|
fn age(&self) -> u8 {
|
||||||
|
self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Person {
|
||||||
|
ag$0e: Age,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Person {}
|
||||||
|
}"#,
|
||||||
|
r#"
|
||||||
|
mod indent {
|
||||||
|
struct Age(u8);
|
||||||
|
impl Age {
|
||||||
|
fn age(&self) -> u8 {
|
||||||
|
self.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Person {
|
||||||
|
age: Age,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Person {
|
||||||
|
$0fn age(&self) -> u8 {
|
||||||
|
self.age.age()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_generate_delegate_tuple_struct() {
|
fn test_generate_delegate_tuple_struct() {
|
||||||
check_assist(
|
check_assist(
|
||||||
|
Loading…
Reference in New Issue
Block a user