mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Imrove fn name computation in Generate function
This commit is contained in:
parent
726a2aa211
commit
4dc33140a3
2 changed files with 30 additions and 13 deletions
|
@ -71,12 +71,13 @@ fn gen_fn(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
||||||
let path_expr: ast::PathExpr = ctx.find_node_at_offset()?;
|
let path_expr: ast::PathExpr = ctx.find_node_at_offset()?;
|
||||||
let call = path_expr.syntax().parent().and_then(ast::CallExpr::cast)?;
|
let call = path_expr.syntax().parent().and_then(ast::CallExpr::cast)?;
|
||||||
let path = path_expr.path()?;
|
let path = path_expr.path()?;
|
||||||
let fn_name = fn_name(&path)?;
|
let name_ref = path.segment()?.name_ref()?;
|
||||||
if ctx.sema.resolve_path(&path).is_some() {
|
if ctx.sema.resolve_path(&path).is_some() {
|
||||||
// The function call already resolves, no need to add a function
|
// The function call already resolves, no need to add a function
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let fn_name = &*name_ref.text();
|
||||||
let target_module;
|
let target_module;
|
||||||
let mut adt_name = None;
|
let mut adt_name = None;
|
||||||
|
|
||||||
|
@ -93,7 +94,7 @@ fn gen_fn(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
||||||
if current_module.krate() != module.krate() {
|
if current_module.krate() != module.krate() {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let (impl_, file) = get_adt_source(ctx, &adt, fn_name.text().as_str())?;
|
let (impl_, file) = get_adt_source(ctx, &adt, fn_name)?;
|
||||||
let (target, insert_offset) = get_method_target(ctx, &module, &impl_)?;
|
let (target, insert_offset) = get_method_target(ctx, &module, &impl_)?;
|
||||||
adt_name = if impl_.is_none() { Some(adt.name(ctx.sema.db)) } else { None };
|
adt_name = if impl_.is_none() { Some(adt.name(ctx.sema.db)) } else { None };
|
||||||
(target, file, insert_offset)
|
(target, file, insert_offset)
|
||||||
|
@ -107,7 +108,7 @@ fn gen_fn(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
|
||||||
get_fn_target(ctx, &target_module, call.clone())?
|
get_fn_target(ctx, &target_module, call.clone())?
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let function_builder = FunctionBuilder::from_call(ctx, &call, &path, target_module, target)?;
|
let function_builder = FunctionBuilder::from_call(ctx, &call, fn_name, target_module, target)?;
|
||||||
let text_range = call.syntax().text_range();
|
let text_range = call.syntax().text_range();
|
||||||
let label = format!("Generate {} function", function_builder.fn_name);
|
let label = format!("Generate {} function", function_builder.fn_name);
|
||||||
add_func_to_accumulator(
|
add_func_to_accumulator(
|
||||||
|
@ -241,13 +242,13 @@ impl FunctionBuilder {
|
||||||
fn from_call(
|
fn from_call(
|
||||||
ctx: &AssistContext,
|
ctx: &AssistContext,
|
||||||
call: &ast::CallExpr,
|
call: &ast::CallExpr,
|
||||||
path: &ast::Path,
|
fn_name: &str,
|
||||||
target_module: Option<hir::Module>,
|
target_module: Option<hir::Module>,
|
||||||
target: GeneratedFunctionTarget,
|
target: GeneratedFunctionTarget,
|
||||||
) -> Option<Self> {
|
) -> Option<Self> {
|
||||||
let needs_pub = target_module.is_some();
|
let needs_pub = target_module.is_some();
|
||||||
let target_module = target_module.or_else(|| current_module(target.syntax(), ctx))?;
|
let target_module = target_module.or_else(|| current_module(target.syntax(), ctx))?;
|
||||||
let fn_name = fn_name(path)?;
|
let fn_name = make::name(fn_name);
|
||||||
let (type_params, params) = fn_args(ctx, target_module, FuncExpr::Func(call.clone()))?;
|
let (type_params, params) = fn_args(ctx, target_module, FuncExpr::Func(call.clone()))?;
|
||||||
|
|
||||||
let await_expr = call.syntax().parent().and_then(ast::AwaitExpr::cast);
|
let await_expr = call.syntax().parent().and_then(ast::AwaitExpr::cast);
|
||||||
|
@ -428,11 +429,6 @@ impl GeneratedFunctionTarget {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn fn_name(call: &ast::Path) -> Option<ast::Name> {
|
|
||||||
let name = call.segment()?.syntax().to_string();
|
|
||||||
Some(make::name(&name))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Computes the type variables and arguments required for the generated function
|
/// Computes the type variables and arguments required for the generated function
|
||||||
fn fn_args(
|
fn fn_args(
|
||||||
ctx: &AssistContext,
|
ctx: &AssistContext,
|
||||||
|
@ -1646,4 +1642,25 @@ fn bar() ${0:-> _} {
|
||||||
",
|
",
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn no_panic_on_invalid_global_path() {
|
||||||
|
check_assist(
|
||||||
|
generate_function,
|
||||||
|
r#"
|
||||||
|
fn main() {
|
||||||
|
::foo$0();
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
r#"
|
||||||
|
fn main() {
|
||||||
|
::foo();
|
||||||
|
}
|
||||||
|
|
||||||
|
fn foo() ${0:-> _} {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,9 +21,9 @@ impl<'a> TokenText<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn as_str(&self) -> &str {
|
pub fn as_str(&self) -> &str {
|
||||||
match self.0 {
|
match &self.0 {
|
||||||
Repr::Borrowed(it) => it,
|
&Repr::Borrowed(it) => it,
|
||||||
Repr::Owned(ref green) => green.text(),
|
Repr::Owned(green) => green.text(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue