2021-02-28 01:59:19 +05:30
|
|
|
use crate::{
|
|
|
|
assist_context::{AssistContext, Assists},
|
2021-03-02 01:34:18 +05:30
|
|
|
AssistId,
|
2021-02-28 01:59:19 +05:30
|
|
|
};
|
|
|
|
use syntax::{
|
2021-03-02 01:34:18 +05:30
|
|
|
ast::{self, Impl, NameOwner},
|
|
|
|
AstNode,
|
2021-02-28 01:59:19 +05:30
|
|
|
};
|
2021-02-28 01:48:51 +05:30
|
|
|
use test_utils::mark;
|
|
|
|
|
|
|
|
// Assist: generate_default_from_new
|
|
|
|
//
|
2021-02-28 02:30:19 +05:30
|
|
|
// Generates default implementation from new method.
|
2021-02-28 01:48:51 +05:30
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// struct Example { _inner: () }
|
|
|
|
//
|
|
|
|
// impl Example {
|
2021-02-28 02:30:19 +05:30
|
|
|
// pub fn n$0ew() -> Self {
|
2021-02-28 01:48:51 +05:30
|
|
|
// Self { _inner: () }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// struct Example { _inner: () }
|
2021-02-28 02:30:19 +05:30
|
|
|
//
|
2021-02-28 01:48:51 +05:30
|
|
|
// impl Example {
|
|
|
|
// pub fn new() -> Self {
|
|
|
|
// Self { _inner: () }
|
|
|
|
// }
|
|
|
|
// }
|
2021-02-28 02:30:19 +05:30
|
|
|
//
|
2021-02-28 01:48:51 +05:30
|
|
|
// impl Default for Example {
|
|
|
|
// fn default() -> Self {
|
|
|
|
// Self::new()
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
pub(crate) fn generate_default_from_new(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
2021-03-02 00:49:19 +05:30
|
|
|
let fn_node = ctx.find_node_at_offset::<ast::Fn>()?;
|
|
|
|
let fn_name = fn_node.name()?;
|
2021-02-28 01:48:51 +05:30
|
|
|
|
2021-03-02 00:49:19 +05:30
|
|
|
if fn_name.text() != "new" {
|
2021-02-28 01:48:51 +05:30
|
|
|
mark::hit!(other_function_than_new);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2021-03-02 00:49:19 +05:30
|
|
|
if fn_node.param_list()?.params().next().is_some() {
|
2021-02-28 01:48:51 +05:30
|
|
|
mark::hit!(new_function_with_parameters);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2021-03-02 00:49:19 +05:30
|
|
|
let impl_ = fn_node.syntax().ancestors().into_iter().find_map(ast::Impl::cast)?;
|
2021-02-28 01:48:51 +05:30
|
|
|
|
2021-03-02 00:49:19 +05:30
|
|
|
let insert_location = impl_.syntax().text_range();
|
2021-02-28 01:48:51 +05:30
|
|
|
|
|
|
|
acc.add(
|
|
|
|
AssistId("generate_default_from_new", crate::AssistKind::Generate),
|
|
|
|
"Generate a Default impl from a new fn",
|
2021-03-02 00:49:19 +05:30
|
|
|
insert_location,
|
2021-02-28 01:48:51 +05:30
|
|
|
move |builder| {
|
2021-03-02 01:34:18 +05:30
|
|
|
let code = default_fn_node_for_new(impl_);
|
|
|
|
builder.insert(insert_location.end(), code);
|
2021-02-28 01:48:51 +05:30
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-03-02 01:34:18 +05:30
|
|
|
fn default_fn_node_for_new(impl_: Impl) -> String {
|
|
|
|
format!(
|
|
|
|
"
|
|
|
|
|
|
|
|
impl Default for {} {{
|
|
|
|
fn default() -> Self {{
|
2021-02-28 01:48:51 +05:30
|
|
|
Self::new()
|
2021-03-02 01:34:18 +05:30
|
|
|
}}
|
|
|
|
}}",
|
|
|
|
impl_.self_ty().unwrap().syntax().text()
|
|
|
|
)
|
2021-02-28 01:48:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn generate_default() {
|
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn generate_default2() {
|
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
|
|
|
struct Test { value: u32 }
|
|
|
|
|
|
|
|
impl Test {
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
Self { value: 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Test { value: u32 }
|
|
|
|
|
|
|
|
impl Test {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { value: 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Test {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_function_with_parameters() {
|
|
|
|
mark::check!(new_function_with_parameters);
|
2021-02-28 01:59:19 +05:30
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
2021-02-28 01:48:51 +05:30
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn $0new(value: ()) -> Self {
|
|
|
|
Self { _inner: value }
|
|
|
|
}
|
|
|
|
}
|
2021-02-28 01:59:19 +05:30
|
|
|
"#,
|
2021-02-28 01:48:51 +05:30
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn other_function_than_new() {
|
|
|
|
mark::check!(other_function_than_new);
|
2021-02-28 01:59:19 +05:30
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
2021-02-28 01:48:51 +05:30
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Exmaple {
|
|
|
|
pub fn a$0dd() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 01:59:19 +05:30
|
|
|
"#,
|
2021-02-28 01:48:51 +05:30
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-02-28 01:59:19 +05:30
|
|
|
// #[test]
|
|
|
|
// fn default_block_is_already_present() {
|
|
|
|
// check_assist_not_applicable(generate_default_from_new,
|
|
|
|
// r#"
|
|
|
|
// struct Example { _inner: () }
|
|
|
|
|
|
|
|
// impl Exmaple {
|
|
|
|
// pub fn n$0ew() -> Self {
|
|
|
|
// Self { _inner: () }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// impl Default for Example {
|
|
|
|
// fn default() -> Self {
|
|
|
|
// Self::new()
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// "#,
|
|
|
|
// );
|
|
|
|
// }
|
2021-02-28 01:48:51 +05:30
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn standalone_new_function() {
|
2021-02-28 01:59:19 +05:30
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
2021-02-28 01:48:51 +05:30
|
|
|
fn n$0ew() -> u32 {
|
|
|
|
0
|
|
|
|
}
|
2021-03-02 00:49:19 +05:30
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn multiple_struct_blocks() {
|
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
|
|
|
struct Example { _inner: () }
|
|
|
|
struct Test { value: u32 }
|
|
|
|
|
|
|
|
impl Example {
|
2021-03-02 01:34:18 +05:30
|
|
|
pub fn new$0() -> Self {
|
2021-03-02 00:49:19 +05:30
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Example { _inner: () }
|
|
|
|
struct Test { value: u32 }
|
|
|
|
|
|
|
|
impl Example {
|
2021-03-02 01:34:18 +05:30
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn when_struct_is_after_impl() {
|
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
|
|
|
impl Example {
|
|
|
|
pub fn $0new() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Example { _inner: () }
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
impl Example {
|
|
|
|
pub fn new() -> Self {
|
2021-03-02 00:49:19 +05:30
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 01:34:18 +05:30
|
|
|
|
|
|
|
struct Example { _inner: () }
|
2021-02-28 01:59:19 +05:30
|
|
|
"#,
|
2021-02-28 01:48:51 +05:30
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|