2022-12-06 11:34:47 -06:00
|
|
|
use syntax::{
|
|
|
|
ast::{self, make, AstNode, HasArgList},
|
|
|
|
TextRange,
|
|
|
|
};
|
|
|
|
|
|
|
|
use crate::{AssistContext, AssistId, AssistKind, Assists};
|
|
|
|
|
2023-01-09 07:59:02 -06:00
|
|
|
// Assist: unqualify_method_call
|
2022-12-06 11:34:47 -06:00
|
|
|
//
|
|
|
|
// Transforms universal function call syntax into a method call.
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// fn main() {
|
|
|
|
// std::ops::Add::add$0(1, 2);
|
|
|
|
// }
|
|
|
|
// # mod std { pub mod ops { pub trait Add { fn add(self, _: Self) {} } impl Add for i32 {} } }
|
|
|
|
// ```
|
|
|
|
// ->
|
|
|
|
// ```
|
|
|
|
// fn main() {
|
|
|
|
// 1.add(2);
|
|
|
|
// }
|
|
|
|
// # mod std { pub mod ops { pub trait Add { fn add(self, _: Self) {} } impl Add for i32 {} } }
|
|
|
|
// ```
|
2023-01-09 07:59:02 -06:00
|
|
|
pub(crate) fn unqualify_method_call(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {
|
2022-12-06 11:34:47 -06:00
|
|
|
let call = ctx.find_node_at_offset::<ast::CallExpr>()?;
|
|
|
|
let ast::Expr::PathExpr(path_expr) = call.expr()? else { return None };
|
|
|
|
let path = path_expr.path()?;
|
|
|
|
|
|
|
|
let cursor_in_range = path.syntax().text_range().contains_range(ctx.selection_trimmed());
|
|
|
|
if !cursor_in_range {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let args = call.arg_list()?;
|
|
|
|
let l_paren = args.l_paren_token()?;
|
|
|
|
let mut args_iter = args.args();
|
|
|
|
let first_arg = args_iter.next()?;
|
|
|
|
let second_arg = args_iter.next();
|
|
|
|
|
|
|
|
_ = path.qualifier()?;
|
|
|
|
let method_name = path.segment()?.name_ref()?;
|
|
|
|
|
|
|
|
let res = ctx.sema.resolve_path(&path)?;
|
|
|
|
let hir::PathResolution::Def(hir::ModuleDef::Function(fun)) = res else { return None };
|
|
|
|
if !fun.has_self_param(ctx.sema.db) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
// `core::ops::Add::add(` -> ``
|
|
|
|
let delete_path =
|
|
|
|
TextRange::new(path.syntax().text_range().start(), l_paren.text_range().end());
|
|
|
|
|
|
|
|
// Parens around `expr` if needed
|
|
|
|
let parens = needs_parens_as_receiver(&first_arg).then(|| {
|
|
|
|
let range = first_arg.syntax().text_range();
|
|
|
|
(range.start(), range.end())
|
|
|
|
});
|
|
|
|
|
|
|
|
// `, ` -> `.add(`
|
|
|
|
let replace_comma = TextRange::new(
|
|
|
|
first_arg.syntax().text_range().end(),
|
|
|
|
second_arg
|
|
|
|
.map(|a| a.syntax().text_range().start())
|
|
|
|
.unwrap_or_else(|| first_arg.syntax().text_range().end()),
|
|
|
|
);
|
|
|
|
|
|
|
|
acc.add(
|
2023-01-09 07:59:02 -06:00
|
|
|
AssistId("unqualify_method_call", AssistKind::RefactorRewrite),
|
|
|
|
"Unqualify method call",
|
2022-12-06 11:34:47 -06:00
|
|
|
call.syntax().text_range(),
|
|
|
|
|edit| {
|
|
|
|
edit.delete(delete_path);
|
|
|
|
if let Some((open, close)) = parens {
|
|
|
|
edit.insert(open, "(");
|
|
|
|
edit.insert(close, ")");
|
|
|
|
}
|
|
|
|
edit.replace(replace_comma, format!(".{method_name}("));
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn needs_parens_as_receiver(expr: &ast::Expr) -> bool {
|
|
|
|
// Make `(expr).dummy()`
|
|
|
|
let dummy_call = make::expr_method_call(
|
|
|
|
make::expr_paren(expr.clone()),
|
|
|
|
make::name_ref("dummy"),
|
|
|
|
make::arg_list([]),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Get the `expr` clone with the right parent back
|
|
|
|
// (unreachable!s are fine since we've just constructed the expression)
|
|
|
|
let ast::Expr::MethodCallExpr(call) = &dummy_call else { unreachable!() };
|
|
|
|
let Some(receiver) = call.receiver() else { unreachable!() };
|
|
|
|
let ast::Expr::ParenExpr(parens) = receiver else { unreachable!() };
|
|
|
|
let Some(expr) = parens.expr() else { unreachable!() };
|
|
|
|
|
|
|
|
expr.needs_parens_in(dummy_call.syntax().clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::tests::{check_assist, check_assist_not_applicable};
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2023-01-09 07:59:02 -06:00
|
|
|
fn unqualify_method_call_simple() {
|
2022-12-06 11:34:47 -06:00
|
|
|
check_assist(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl S { fn f(self, S: S) {} }
|
|
|
|
fn f() { S::$0f(S, S); }"#,
|
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl S { fn f(self, S: S) {} }
|
|
|
|
fn f() { S.f(S); }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-09 07:59:02 -06:00
|
|
|
fn unqualify_method_call_trait() {
|
2022-12-06 11:34:47 -06:00
|
|
|
check_assist(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
//- minicore: add
|
|
|
|
fn f() { <u32 as core::ops::Add>::$0add(2, 2); }"#,
|
|
|
|
r#"
|
|
|
|
fn f() { 2.add(2); }"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
check_assist(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
//- minicore: add
|
|
|
|
fn f() { core::ops::Add::$0add(2, 2); }"#,
|
|
|
|
r#"
|
|
|
|
fn f() { 2.add(2); }"#,
|
|
|
|
);
|
|
|
|
|
|
|
|
check_assist(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
//- minicore: add
|
|
|
|
use core::ops::Add;
|
|
|
|
fn f() { <_>::$0add(2, 2); }"#,
|
|
|
|
r#"
|
|
|
|
use core::ops::Add;
|
|
|
|
fn f() { 2.add(2); }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-09 07:59:02 -06:00
|
|
|
fn unqualify_method_call_single_arg() {
|
2022-12-06 11:34:47 -06:00
|
|
|
check_assist(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl S { fn f(self) {} }
|
|
|
|
fn f() { S::$0f(S); }"#,
|
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl S { fn f(self) {} }
|
|
|
|
fn f() { S.f(); }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-09 07:59:02 -06:00
|
|
|
fn unqualify_method_call_parens() {
|
2022-12-06 11:34:47 -06:00
|
|
|
check_assist(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
//- minicore: deref
|
|
|
|
struct S;
|
|
|
|
impl core::ops::Deref for S {
|
|
|
|
type Target = S;
|
|
|
|
fn deref(&self) -> &S { self }
|
|
|
|
}
|
|
|
|
fn f() { core::ops::Deref::$0deref(&S); }"#,
|
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl core::ops::Deref for S {
|
|
|
|
type Target = S;
|
|
|
|
fn deref(&self) -> &S { self }
|
|
|
|
}
|
|
|
|
fn f() { (&S).deref(); }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-09 07:59:02 -06:00
|
|
|
fn unqualify_method_call_doesnt_apply_with_cursor_not_on_path() {
|
2022-12-06 11:34:47 -06:00
|
|
|
check_assist_not_applicable(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
//- minicore: add
|
|
|
|
fn f() { core::ops::Add::add(2,$0 2); }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-01-09 07:59:02 -06:00
|
|
|
fn unqualify_method_call_doesnt_apply_with_no_self() {
|
2022-12-06 11:34:47 -06:00
|
|
|
check_assist_not_applicable(
|
2023-01-09 07:59:02 -06:00
|
|
|
unqualify_method_call,
|
2022-12-06 11:34:47 -06:00
|
|
|
r#"
|
|
|
|
struct S;
|
|
|
|
impl S { fn assoc(S: S, S: S) {} }
|
|
|
|
fn f() { S::assoc$0(S, S); }"#,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|