2022-06-24 09:17:26 -05:00
|
|
|
use hir::{db::HirDatabase, AsAssocItem, AssocItem, AssocItemContainer, ItemInNs, ModuleDef};
|
|
|
|
use ide_db::assists::{AssistId, AssistKind};
|
2021-10-21 01:35:14 -05:00
|
|
|
use syntax::{ast, AstNode};
|
2021-10-21 01:28:19 -05:00
|
|
|
|
2021-10-21 01:35:14 -05:00
|
|
|
use crate::{
|
|
|
|
assist_context::{AssistContext, Assists},
|
|
|
|
handlers::qualify_path::QualifyCandidate,
|
|
|
|
};
|
2021-10-21 01:28:19 -05:00
|
|
|
|
|
|
|
// Assist: qualify_method_call
|
|
|
|
//
|
2021-10-22 01:41:43 -05:00
|
|
|
// Replaces the method call with a qualified function call.
|
2021-10-21 01:28:19 -05:00
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// struct Foo;
|
|
|
|
// impl Foo {
|
2021-10-21 01:35:14 -05:00
|
|
|
// fn foo(&self) {}
|
2021-10-21 01:28:19 -05:00
|
|
|
// }
|
|
|
|
// fn main() {
|
|
|
|
// let foo = Foo;
|
|
|
|
// foo.fo$0o();
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// struct Foo;
|
|
|
|
// impl Foo {
|
2021-10-21 01:35:14 -05:00
|
|
|
// fn foo(&self) {}
|
2021-10-21 01:28:19 -05:00
|
|
|
// }
|
|
|
|
// fn main() {
|
|
|
|
// let foo = Foo;
|
|
|
|
// Foo::foo(&foo);
|
|
|
|
// }
|
|
|
|
// ```
|
2022-07-20 08:02:08 -05:00
|
|
|
pub(crate) fn qualify_method_call(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {
|
2021-10-22 01:41:43 -05:00
|
|
|
let name: ast::NameRef = ctx.find_node_at_offset()?;
|
|
|
|
let call = name.syntax().parent().and_then(ast::MethodCallExpr::cast)?;
|
|
|
|
|
|
|
|
let ident = name.ident_token()?;
|
2021-10-21 01:35:14 -05:00
|
|
|
|
2021-10-21 01:28:19 -05:00
|
|
|
let range = call.syntax().text_range();
|
|
|
|
let resolved_call = ctx.sema.resolve_method_call(&call)?;
|
|
|
|
|
2022-03-31 04:12:08 -05:00
|
|
|
let current_module = ctx.sema.scope(call.syntax())?.module();
|
2021-10-21 01:28:19 -05:00
|
|
|
let target_module_def = ModuleDef::from(resolved_call);
|
|
|
|
let item_in_ns = ItemInNs::from(target_module_def);
|
2022-09-09 13:04:56 -05:00
|
|
|
let receiver_path = current_module.find_use_path(
|
|
|
|
ctx.sema.db,
|
|
|
|
item_for_path_search(ctx.sema.db, item_in_ns)?,
|
2022-09-13 08:09:40 -05:00
|
|
|
ctx.config.prefer_no_std,
|
2022-09-09 13:04:56 -05:00
|
|
|
)?;
|
2021-10-21 01:28:19 -05:00
|
|
|
|
|
|
|
let qualify_candidate = QualifyCandidate::ImplMethod(ctx.sema.db, call, resolved_call);
|
2021-10-21 01:35:14 -05:00
|
|
|
|
2021-10-21 01:28:19 -05:00
|
|
|
acc.add(
|
2023-01-09 08:26:48 -06:00
|
|
|
AssistId("qualify_method_call", AssistKind::RefactorRewrite),
|
2022-10-10 13:20:27 -05:00
|
|
|
format!("Qualify `{ident}` method call"),
|
2021-10-21 01:28:19 -05:00
|
|
|
range,
|
|
|
|
|builder| {
|
|
|
|
qualify_candidate.qualify(
|
|
|
|
|replace_with: String| builder.replace(range, replace_with),
|
|
|
|
&receiver_path,
|
2021-10-21 01:35:14 -05:00
|
|
|
item_in_ns,
|
2021-10-21 01:28:19 -05:00
|
|
|
)
|
2021-10-21 01:35:14 -05:00
|
|
|
},
|
2021-10-21 01:28:19 -05:00
|
|
|
);
|
|
|
|
Some(())
|
|
|
|
}
|
|
|
|
|
2022-06-24 09:17:26 -05:00
|
|
|
fn item_for_path_search(db: &dyn HirDatabase, item: ItemInNs) -> Option<ItemInNs> {
|
|
|
|
Some(match item {
|
|
|
|
ItemInNs::Types(_) | ItemInNs::Values(_) => match item_as_assoc(db, item) {
|
|
|
|
Some(assoc_item) => match assoc_item.container(db) {
|
|
|
|
AssocItemContainer::Trait(trait_) => ItemInNs::from(ModuleDef::from(trait_)),
|
2022-06-24 09:41:07 -05:00
|
|
|
AssocItemContainer::Impl(impl_) => match impl_.trait_(db) {
|
|
|
|
None => ItemInNs::from(ModuleDef::from(impl_.self_ty(db).as_adt()?)),
|
|
|
|
Some(trait_) => ItemInNs::from(ModuleDef::from(trait_)),
|
|
|
|
},
|
2022-06-24 09:17:26 -05:00
|
|
|
},
|
|
|
|
None => item,
|
|
|
|
},
|
|
|
|
ItemInNs::Macros(_) => item,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_as_assoc(db: &dyn HirDatabase, item: ItemInNs) -> Option<AssocItem> {
|
|
|
|
item.as_module_def().and_then(|module_def| module_def.as_assoc_item(db))
|
|
|
|
}
|
|
|
|
|
2021-10-21 01:28:19 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2021-10-22 01:41:43 -05:00
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
2021-10-21 01:28:19 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_method() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
foo.fo$0o()
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
Foo::foo(&foo)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_method_multi_params() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
foo.fo$0o(9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
Foo::foo(&foo, 9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_method_consume() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
foo.fo$0o(9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
Foo::foo(foo, 9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_method_exclusive() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&mut self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
foo.fo$0o(9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&mut self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
Foo::foo(&mut foo, 9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_method_cross_crate() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
//- /main.rs crate:main deps:dep
|
|
|
|
fn main() {
|
|
|
|
let foo = dep::test_mod::Foo {};
|
|
|
|
foo.fo$0o(9, 9u)
|
|
|
|
}
|
|
|
|
//- /dep.rs crate:dep
|
|
|
|
pub mod test_mod {
|
|
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
pub fn foo(&mut self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let foo = dep::test_mod::Foo {};
|
|
|
|
dep::test_mod::Foo::foo(&mut foo, 9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn struct_method_generic() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo<T>(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
foo.fo$0o::<()>()
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo<T>(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
Foo::foo::<()>(&foo)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trait_method() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&self);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&self) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
|
|
|
test_struct.test_meth$0od()
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&self);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&self) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
2022-06-24 09:17:26 -05:00
|
|
|
TestTrait::test_method(&test_struct)
|
2021-10-21 01:28:19 -05:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trait_method_multi_params() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
|
|
|
test_struct.test_meth$0od(12, 32u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
2022-06-24 09:17:26 -05:00
|
|
|
TestTrait::test_method(&test_struct, 12, 32u)
|
2021-10-21 01:28:19 -05:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trait_method_consume() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
|
|
|
test_struct.test_meth$0od(12, 32u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
2022-06-24 09:17:26 -05:00
|
|
|
TestTrait::test_method(test_struct, 12, 32u)
|
2021-10-21 01:28:19 -05:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trait_method_exclusive() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&mut self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&mut self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
|
|
|
test_struct.test_meth$0od(12, 32u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&mut self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&mut self, p1: i32, p2: u32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
2022-06-24 09:17:26 -05:00
|
|
|
TestTrait::test_method(&mut test_struct, 12, 32u)
|
2021-10-21 01:28:19 -05:00
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trait_method_cross_crate() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
//- /main.rs crate:main deps:dep
|
|
|
|
fn main() {
|
|
|
|
let foo = dep::test_mod::Foo {};
|
|
|
|
foo.fo$0o(9, 9u)
|
|
|
|
}
|
|
|
|
//- /dep.rs crate:dep
|
|
|
|
pub mod test_mod {
|
|
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
pub fn foo(&mut self, p1: i32, p2: u32) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
fn main() {
|
|
|
|
let foo = dep::test_mod::Foo {};
|
|
|
|
dep::test_mod::Foo::foo(&mut foo, 9, 9u)
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trait_method_generic() {
|
|
|
|
check_assist(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method<T>(&self);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method<T>(&self) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = TestStruct {};
|
|
|
|
test_struct.test_meth$0od::<()>()
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method<T>(&self);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method<T>(&self) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = TestStruct {};
|
2022-06-24 09:17:26 -05:00
|
|
|
TestTrait::test_method::<()>(&test_struct)
|
2021-10-21 01:28:19 -05:00
|
|
|
}
|
2021-10-22 01:41:43 -05:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-04-13 17:35:00 -05:00
|
|
|
fn struct_method_over_struct_instance() {
|
2021-10-22 01:41:43 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn foo(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let foo = Foo {};
|
|
|
|
f$0oo.foo()
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-04-13 17:35:00 -05:00
|
|
|
fn trait_method_over_struct_instance() {
|
2021-10-22 01:41:43 -05:00
|
|
|
check_assist_not_applicable(
|
|
|
|
qualify_method_call,
|
|
|
|
r#"
|
|
|
|
mod test_mod {
|
|
|
|
pub trait TestTrait {
|
|
|
|
fn test_method(&self);
|
|
|
|
}
|
|
|
|
pub struct TestStruct {}
|
|
|
|
impl TestTrait for TestStruct {
|
|
|
|
fn test_method(&self) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use test_mod::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let test_struct = test_mod::TestStruct {};
|
|
|
|
tes$0t_struct.test_method()
|
|
|
|
}
|
2021-10-21 01:28:19 -05:00
|
|
|
"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|