2022-03-06 12:01:30 -06:00
|
|
|
use ide_db::famous_defs::FamousDefs;
|
2021-05-15 07:07:32 -05:00
|
|
|
use stdx::format_to;
|
2021-02-27 14:29:19 -06:00
|
|
|
use syntax::{
|
2022-10-10 13:22:01 -05:00
|
|
|
ast::{self, make, HasGenericParams, HasName, Impl},
|
2021-03-01 14:04:18 -06:00
|
|
|
AstNode,
|
2021-02-27 14:29:19 -06:00
|
|
|
};
|
2021-02-27 14:18:51 -06:00
|
|
|
|
2021-06-17 12:49:49 -05:00
|
|
|
use crate::{
|
|
|
|
assist_context::{AssistContext, Assists},
|
|
|
|
AssistId,
|
|
|
|
};
|
|
|
|
|
2021-02-27 14:18:51 -06:00
|
|
|
// Assist: generate_default_from_new
|
|
|
|
//
|
2021-02-27 15:00:19 -06:00
|
|
|
// Generates default implementation from new method.
|
2021-02-27 14:18:51 -06:00
|
|
|
//
|
|
|
|
// ```
|
2023-08-06 13:23:41 -05:00
|
|
|
// # //- minicore: default
|
2021-02-27 14:18:51 -06:00
|
|
|
// struct Example { _inner: () }
|
|
|
|
//
|
|
|
|
// impl Example {
|
2021-02-27 15:00:19 -06:00
|
|
|
// pub fn n$0ew() -> Self {
|
2021-02-27 14:18:51 -06:00
|
|
|
// Self { _inner: () }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// struct Example { _inner: () }
|
2021-02-27 15:00:19 -06:00
|
|
|
//
|
2021-02-27 14:18:51 -06:00
|
|
|
// impl Example {
|
|
|
|
// pub fn new() -> Self {
|
|
|
|
// Self { _inner: () }
|
|
|
|
// }
|
|
|
|
// }
|
2021-02-27 15:00:19 -06:00
|
|
|
//
|
2021-02-27 14:18:51 -06:00
|
|
|
// impl Default for Example {
|
|
|
|
// fn default() -> Self {
|
|
|
|
// Self::new()
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// ```
|
2022-07-20 08:02:08 -05:00
|
|
|
pub(crate) fn generate_default_from_new(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {
|
2021-03-01 13:19:19 -06:00
|
|
|
let fn_node = ctx.find_node_at_offset::<ast::Fn>()?;
|
|
|
|
let fn_name = fn_node.name()?;
|
2021-02-27 14:18:51 -06:00
|
|
|
|
2021-03-01 13:19:19 -06:00
|
|
|
if fn_name.text() != "new" {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::hit!(other_function_than_new);
|
2021-02-27 14:18:51 -06:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2021-03-01 13:19:19 -06:00
|
|
|
if fn_node.param_list()?.params().next().is_some() {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::hit!(new_function_with_parameters);
|
2021-02-27 14:18:51 -06:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2022-12-30 02:42:44 -06:00
|
|
|
let impl_ = fn_node.syntax().ancestors().find_map(ast::Impl::cast)?;
|
2023-08-06 13:23:41 -05:00
|
|
|
let self_ty = impl_.self_ty()?;
|
2021-03-06 13:21:48 -06:00
|
|
|
if is_default_implemented(ctx, &impl_) {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::hit!(default_block_is_already_present);
|
|
|
|
cov_mark::hit!(struct_in_module_with_default);
|
2021-03-04 12:26:18 -06:00
|
|
|
return None;
|
|
|
|
}
|
2021-02-27 14:18:51 -06:00
|
|
|
|
2021-03-01 13:19:19 -06:00
|
|
|
let insert_location = impl_.syntax().text_range();
|
2021-05-15 07:07:32 -05:00
|
|
|
|
2021-02-27 14:18:51 -06:00
|
|
|
acc.add(
|
|
|
|
AssistId("generate_default_from_new", crate::AssistKind::Generate),
|
|
|
|
"Generate a Default impl from a new fn",
|
2021-03-01 13:19:19 -06:00
|
|
|
insert_location,
|
2021-02-27 14:18:51 -06:00
|
|
|
move |builder| {
|
2021-05-15 07:07:32 -05:00
|
|
|
let default_code = " fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}";
|
2023-08-06 13:23:41 -05:00
|
|
|
let code = generate_trait_impl_text_from_impl(&impl_, self_ty, "Default", default_code);
|
2021-03-01 14:04:18 -06:00
|
|
|
builder.insert(insert_location.end(), code);
|
2021-02-27 14:18:51 -06:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-10 13:22:01 -05:00
|
|
|
// FIXME: based on from utils::generate_impl_text_inner
|
2023-08-06 13:23:41 -05:00
|
|
|
fn generate_trait_impl_text_from_impl(
|
|
|
|
impl_: &ast::Impl,
|
|
|
|
self_ty: ast::Type,
|
|
|
|
trait_text: &str,
|
|
|
|
code: &str,
|
|
|
|
) -> String {
|
2022-10-10 13:22:01 -05:00
|
|
|
let generic_params = impl_.generic_param_list().map(|generic_params| {
|
|
|
|
let lifetime_params =
|
|
|
|
generic_params.lifetime_params().map(ast::GenericParam::LifetimeParam);
|
2023-01-10 12:48:51 -06:00
|
|
|
let ty_or_const_params = generic_params.type_or_const_params().map(|param| {
|
2022-10-10 13:22:01 -05:00
|
|
|
// remove defaults since they can't be specified in impls
|
|
|
|
match param {
|
|
|
|
ast::TypeOrConstParam::Type(param) => {
|
|
|
|
let param = param.clone_for_update();
|
|
|
|
param.remove_default();
|
2023-01-10 12:48:51 -06:00
|
|
|
ast::GenericParam::TypeParam(param)
|
2021-12-29 07:35:59 -06:00
|
|
|
}
|
2022-10-10 13:22:01 -05:00
|
|
|
ast::TypeOrConstParam::Const(param) => {
|
|
|
|
let param = param.clone_for_update();
|
|
|
|
param.remove_default();
|
2023-01-10 12:48:51 -06:00
|
|
|
ast::GenericParam::ConstParam(param)
|
2021-12-29 07:35:59 -06:00
|
|
|
}
|
2021-05-15 07:07:32 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-10-10 13:22:01 -05:00
|
|
|
make::generic_param_list(itertools::chain(lifetime_params, ty_or_const_params))
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut buf = String::with_capacity(code.len());
|
|
|
|
buf.push_str("\n\n");
|
|
|
|
|
|
|
|
// `impl{generic_params} {trait_text} for {impl_.self_ty()}`
|
|
|
|
buf.push_str("impl");
|
|
|
|
if let Some(generic_params) = &generic_params {
|
|
|
|
format_to!(buf, "{generic_params}")
|
|
|
|
}
|
2023-08-06 13:23:41 -05:00
|
|
|
format_to!(buf, " {trait_text} for {self_ty}");
|
2021-05-15 07:07:32 -05:00
|
|
|
|
|
|
|
match impl_.where_clause() {
|
|
|
|
Some(where_clause) => {
|
2022-10-10 13:22:01 -05:00
|
|
|
format_to!(buf, "\n{where_clause}\n{{\n{code}\n}}");
|
2021-05-15 07:07:32 -05:00
|
|
|
}
|
|
|
|
None => {
|
2022-10-10 13:22:01 -05:00
|
|
|
format_to!(buf, " {{\n{code}\n}}");
|
2021-05-15 07:07:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buf
|
2021-02-27 14:18:51 -06:00
|
|
|
}
|
|
|
|
|
2022-07-20 08:02:08 -05:00
|
|
|
fn is_default_implemented(ctx: &AssistContext<'_>, impl_: &Impl) -> bool {
|
2021-03-04 12:26:18 -06:00
|
|
|
let db = ctx.sema.db;
|
2021-03-06 13:21:48 -06:00
|
|
|
let impl_ = ctx.sema.to_def(impl_);
|
2021-03-06 13:56:05 -06:00
|
|
|
let impl_def = match impl_ {
|
|
|
|
Some(value) => value,
|
2021-03-06 13:21:48 -06:00
|
|
|
None => return false,
|
2021-03-06 13:56:05 -06:00
|
|
|
};
|
2021-03-06 13:21:48 -06:00
|
|
|
|
2021-03-29 10:46:33 -05:00
|
|
|
let ty = impl_def.self_ty(db);
|
2021-03-06 11:45:00 -06:00
|
|
|
let krate = impl_def.module(db).krate();
|
2022-03-31 04:12:08 -05:00
|
|
|
let default = FamousDefs(&ctx.sema, krate).core_default_Default();
|
2021-03-06 13:56:05 -06:00
|
|
|
let default_trait = match default {
|
|
|
|
Some(value) => value,
|
2023-08-06 13:23:41 -05:00
|
|
|
// Return `true` to avoid providing the assist because it makes no sense
|
|
|
|
// to impl `Default` when it's missing.
|
|
|
|
None => return true,
|
2021-03-06 13:56:05 -06:00
|
|
|
};
|
2021-03-06 13:21:48 -06:00
|
|
|
|
|
|
|
ty.impls_trait(db, default_trait, &[])
|
2021-03-04 12:26:18 -06:00
|
|
|
}
|
|
|
|
|
2021-02-27 14:18:51 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn generate_default() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-02-27 14:18:51 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-02-27 14:18:51 -06:00
|
|
|
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() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-02-27 14:18:51 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-02-27 14:18:51 -06:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-05-14 22:29:33 -05:00
|
|
|
#[test]
|
2021-05-15 07:07:32 -05:00
|
|
|
fn new_function_with_generic() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-05-14 22:29:33 -05:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-05-14 22:29:33 -05:00
|
|
|
pub struct Foo<T> {
|
|
|
|
_bar: *mut T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Foo<T> {
|
|
|
|
pub fn ne$0w() -> Self {
|
2021-05-15 07:07:32 -05:00
|
|
|
unimplemented!()
|
2021-05-14 22:29:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
pub struct Foo<T> {
|
|
|
|
_bar: *mut T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Foo<T> {
|
|
|
|
pub fn new() -> Self {
|
2021-05-15 07:07:32 -05:00
|
|
|
unimplemented!()
|
2021-05-14 22:29:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Default for Foo<T> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-05-15 07:07:32 -05:00
|
|
|
#[test]
|
|
|
|
fn new_function_with_generics() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-05-15 07:07:32 -05:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-05-15 07:07:32 -05:00
|
|
|
pub struct Foo<T, B> {
|
|
|
|
_tars: *mut T,
|
|
|
|
_bar: *mut B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, B> Foo<T, B> {
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
pub struct Foo<T, B> {
|
|
|
|
_tars: *mut T,
|
|
|
|
_bar: *mut B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, B> Foo<T, B> {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, B> Default for Foo<T, B> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_function_with_generic_and_bound() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-05-15 07:07:32 -05:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-05-15 07:07:32 -05:00
|
|
|
pub struct Foo<T> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>> Foo<T> {
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
Foo { t: 0.into() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
pub struct Foo<T> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>> Foo<T> {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Foo { t: 0.into() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>> Default for Foo<T> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_function_with_generics_and_bounds() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-05-15 07:07:32 -05:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-05-15 07:07:32 -05:00
|
|
|
pub struct Foo<T, B> {
|
|
|
|
_tars: T,
|
|
|
|
_bar: B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>, B: From<i64>> Foo<T, B> {
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
pub struct Foo<T, B> {
|
|
|
|
_tars: T,
|
|
|
|
_bar: B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>, B: From<i64>> Foo<T, B> {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>, B: From<i64>> Default for Foo<T, B> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_function_with_generic_and_where() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-05-15 07:07:32 -05:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-05-15 07:07:32 -05:00
|
|
|
pub struct Foo<T> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>> Foo<T>
|
|
|
|
where
|
|
|
|
Option<T>: Debug
|
|
|
|
{
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
Foo { t: 0.into() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
pub struct Foo<T> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>> Foo<T>
|
|
|
|
where
|
|
|
|
Option<T>: Debug
|
|
|
|
{
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Foo { t: 0.into() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>> Default for Foo<T>
|
|
|
|
where
|
|
|
|
Option<T>: Debug
|
|
|
|
{
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn new_function_with_generics_and_wheres() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-05-15 07:07:32 -05:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-05-15 07:07:32 -05:00
|
|
|
pub struct Foo<T, B> {
|
|
|
|
_tars: T,
|
|
|
|
_bar: B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>, B: From<i64>> Foo<T, B>
|
|
|
|
where
|
|
|
|
Option<T>: Debug, Option<B>: Debug,
|
|
|
|
{
|
|
|
|
pub fn ne$0w() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
pub struct Foo<T, B> {
|
|
|
|
_tars: T,
|
|
|
|
_bar: B,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>, B: From<i64>> Foo<T, B>
|
|
|
|
where
|
|
|
|
Option<T>: Debug, Option<B>: Debug,
|
|
|
|
{
|
|
|
|
pub fn new() -> Self {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: From<i32>, B: From<i64>> Default for Foo<T, B>
|
|
|
|
where
|
|
|
|
Option<T>: Debug, Option<B>: Debug,
|
|
|
|
{
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-02-27 14:18:51 -06:00
|
|
|
#[test]
|
|
|
|
fn new_function_with_parameters() {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::check!(new_function_with_parameters);
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
2021-02-27 14:29:19 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-02-27 14:18:51 -06:00
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn $0new(value: ()) -> Self {
|
|
|
|
Self { _inner: value }
|
|
|
|
}
|
|
|
|
}
|
2021-02-27 14:29:19 -06:00
|
|
|
"#,
|
2021-02-27 14:18:51 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn other_function_than_new() {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::check!(other_function_than_new);
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
2021-02-27 14:29:19 -06:00
|
|
|
r#"
|
2023-08-06 13:23:41 -05:00
|
|
|
//- minicore: default
|
2021-02-27 14:18:51 -06:00
|
|
|
struct Example { _inner: () }
|
|
|
|
|
2021-03-06 13:56:05 -06:00
|
|
|
impl Example {
|
2021-02-27 14:18:51 -06:00
|
|
|
pub fn a$0dd() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-27 14:29:19 -06:00
|
|
|
"#,
|
2021-02-27 14:18:51 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-03-04 12:26:18 -06:00
|
|
|
#[test]
|
|
|
|
fn default_block_is_already_present() {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::check!(default_block_is_already_present);
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
2021-03-04 12:26:18 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-03-04 12:26:18 -06:00
|
|
|
struct Example { _inner: () }
|
2021-02-27 14:29:19 -06:00
|
|
|
|
2021-03-06 13:21:48 -06:00
|
|
|
impl Example {
|
2021-03-04 12:26:18 -06:00
|
|
|
pub fn n$0ew() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
2021-02-27 14:29:19 -06:00
|
|
|
|
2021-03-04 12:26:18 -06:00
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
2021-02-27 14:18:51 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn standalone_new_function() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
2021-02-27 14:29:19 -06:00
|
|
|
r#"
|
2021-02-27 14:18:51 -06:00
|
|
|
fn n$0ew() -> u32 {
|
|
|
|
0
|
|
|
|
}
|
2021-03-01 13:19:19 -06:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn multiple_struct_blocks() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-03-01 13:19:19 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-03-01 13:19:19 -06:00
|
|
|
struct Example { _inner: () }
|
|
|
|
struct Test { value: u32 }
|
|
|
|
|
|
|
|
impl Example {
|
2021-03-01 14:04:18 -06:00
|
|
|
pub fn new$0() -> Self {
|
2021-03-01 13:19:19 -06:00
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Example { _inner: () }
|
|
|
|
struct Test { value: u32 }
|
|
|
|
|
|
|
|
impl Example {
|
2021-03-01 14:04:18 -06:00
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn when_struct_is_after_impl() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-03-01 14:04:18 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-03-01 14:04:18 -06:00
|
|
|
impl Example {
|
|
|
|
pub fn $0new() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Example { _inner: () }
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
impl Example {
|
|
|
|
pub fn new() -> Self {
|
2021-03-01 13:19:19 -06:00
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 14:04:18 -06:00
|
|
|
|
|
|
|
struct Example { _inner: () }
|
2021-03-04 12:26:18 -06:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_in_module() {
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist(
|
|
|
|
generate_default_from_new,
|
2021-03-04 12:26:18 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-03-04 12:26:18 -06:00
|
|
|
mod test {
|
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn n$0ew() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
mod test {
|
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_in_module_with_default() {
|
2021-03-08 14:19:44 -06:00
|
|
|
cov_mark::check!(struct_in_module_with_default);
|
2021-06-17 12:49:49 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
2021-03-04 12:26:18 -06:00
|
|
|
r#"
|
2021-06-17 12:49:49 -05:00
|
|
|
//- minicore: default
|
2021-03-04 12:26:18 -06:00
|
|
|
mod test {
|
|
|
|
struct Example { _inner: () }
|
|
|
|
|
|
|
|
impl Example {
|
|
|
|
pub fn n$0ew() -> Self {
|
|
|
|
Self { _inner: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Example {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-27 14:29:19 -06:00
|
|
|
"#,
|
2021-02-27 14:18:51 -06:00
|
|
|
);
|
|
|
|
}
|
2023-08-06 13:23:41 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn not_applicable_when_default_lang_item_is_missing() {
|
|
|
|
check_assist_not_applicable(
|
|
|
|
generate_default_from_new,
|
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl S {
|
|
|
|
fn new$0() -> Self {}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn not_applicable_for_missing_self_ty() {
|
|
|
|
// Regression test for #15398.
|
|
|
|
check_assist_not_applicable(generate_default_from_new, "impl { fn new$0() -> Self {} }");
|
|
|
|
}
|
2021-02-27 14:18:51 -06:00
|
|
|
}
|