Auto merge of #14945 - justahero:gh-14626, r=Veykril
Fix Assist "replace named generic type with impl trait" This is a follow-up PR to fix the assist "replace named generic type with impl trait" described in #14626 to filter invalid param types. It integrates the feedback given in PR #14816 . The change updates the logic to determine when a function parameter is safe to replace a type param with its trait implementation. Some parameter definitions are invalid & should not be replaced by their traits, therefore skipping the assist completely. First, all usages of the generic type under the cursor are determined. These usage references are checked to see if they occur outside the function parameter list. If an outside reference is found, e.g. in body, return type or where clause, the assist is skipped. All remaining usages need to appear only in the function param list. For each usage the param type is further inspected to see if it's valid. The logic to determine if a function parameter is valid, follows a heuristic and may not cover all possible parameter definitions. With this change the following param types (as given in [this comment](https://github.com/rust-lang/rust-analyzer/pull/14816#discussion_r1206834603)) are not replaced & therefore skip the assist. ```rust fn foo<P: Trait>( _: <P as Trait>::Assoc, // within path type qualifier _: <() as OtherTrait<P>>::Assoc, // same as above _: P::Assoc, // associated type shorthand _: impl OtherTrait<P> // generic arg in impl trait (note that associated type bindings are fine) _: &dyn Fn(P) // param type and/or return type for Fn* traits ) {} ```
This commit is contained in:
commit
7738ff4927
@ -2,13 +2,17 @@
|
|||||||
use ide_db::{
|
use ide_db::{
|
||||||
base_db::{FileId, FileRange},
|
base_db::{FileId, FileRange},
|
||||||
defs::Definition,
|
defs::Definition,
|
||||||
search::SearchScope,
|
search::{SearchScope, UsageSearchResult},
|
||||||
RootDatabase,
|
RootDatabase,
|
||||||
};
|
};
|
||||||
use syntax::{
|
use syntax::{
|
||||||
ast::{self, make::impl_trait_type, HasGenericParams, HasName, HasTypeBounds},
|
ast::{
|
||||||
ted, AstNode,
|
self, make::impl_trait_type, HasGenericParams, HasName, HasTypeBounds, Name, NameLike,
|
||||||
|
PathType,
|
||||||
|
},
|
||||||
|
match_ast, ted, AstNode,
|
||||||
};
|
};
|
||||||
|
use text_edit::TextRange;
|
||||||
|
|
||||||
use crate::{AssistContext, AssistId, AssistKind, Assists};
|
use crate::{AssistContext, AssistId, AssistKind, Assists};
|
||||||
|
|
||||||
@ -36,55 +40,46 @@ pub(crate) fn replace_named_generic_with_impl(
|
|||||||
let type_bound_list = type_param.type_bound_list()?;
|
let type_bound_list = type_param.type_bound_list()?;
|
||||||
|
|
||||||
let fn_ = type_param.syntax().ancestors().find_map(ast::Fn::cast)?;
|
let fn_ = type_param.syntax().ancestors().find_map(ast::Fn::cast)?;
|
||||||
let params = fn_
|
let param_list_text_range = fn_.param_list()?.syntax().text_range();
|
||||||
.param_list()?
|
|
||||||
.params()
|
|
||||||
.filter_map(|param| {
|
|
||||||
// function parameter type needs to match generic type name
|
|
||||||
if let ast::Type::PathType(path_type) = param.ty()? {
|
|
||||||
let left = path_type.path()?.segment()?.name_ref()?.ident_token()?.to_string();
|
|
||||||
let right = type_param_name.to_string();
|
|
||||||
if left == right {
|
|
||||||
Some(param)
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
|
|
||||||
if params.is_empty() {
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
|
|
||||||
let type_param_hir_def = ctx.sema.to_def(&type_param)?;
|
let type_param_hir_def = ctx.sema.to_def(&type_param)?;
|
||||||
let type_param_def = Definition::GenericParam(hir::GenericParam::TypeParam(type_param_hir_def));
|
let type_param_def = Definition::GenericParam(hir::GenericParam::TypeParam(type_param_hir_def));
|
||||||
|
|
||||||
if is_referenced_outside(&ctx.sema, type_param_def, &fn_, ctx.file_id()) {
|
// get all usage references for the type param
|
||||||
|
let usage_refs = find_usages(&ctx.sema, &fn_, type_param_def, ctx.file_id());
|
||||||
|
if usage_refs.is_empty() {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// All usage references need to be valid (inside the function param list)
|
||||||
|
if !check_valid_usages(&usage_refs, param_list_text_range) {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut path_types_to_replace = Vec::new();
|
||||||
|
for (_a, refs) in usage_refs.iter() {
|
||||||
|
for usage_ref in refs {
|
||||||
|
let param_node = find_path_type(&ctx.sema, &type_param_name, &usage_ref.name)?;
|
||||||
|
path_types_to_replace.push(param_node);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let target = type_param.syntax().text_range();
|
let target = type_param.syntax().text_range();
|
||||||
|
|
||||||
acc.add(
|
acc.add(
|
||||||
AssistId("replace_named_generic_with_impl", AssistKind::RefactorRewrite),
|
AssistId("replace_named_generic_with_impl", AssistKind::RefactorRewrite),
|
||||||
"Replace named generic with impl",
|
"Replace named generic with impl trait",
|
||||||
target,
|
target,
|
||||||
|edit| {
|
|edit| {
|
||||||
let type_param = edit.make_mut(type_param);
|
let type_param = edit.make_mut(type_param);
|
||||||
let fn_ = edit.make_mut(fn_);
|
let fn_ = edit.make_mut(fn_);
|
||||||
|
|
||||||
// get all params
|
let path_types_to_replace = path_types_to_replace
|
||||||
let param_types = params
|
.into_iter()
|
||||||
.iter()
|
.map(|param| edit.make_mut(param))
|
||||||
.filter_map(|param| match param.ty() {
|
|
||||||
Some(ast::Type::PathType(param_type)) => Some(edit.make_mut(param_type)),
|
|
||||||
_ => None,
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
// remove trait from generic param list
|
||||||
if let Some(generic_params) = fn_.generic_param_list() {
|
if let Some(generic_params) = fn_.generic_param_list() {
|
||||||
generic_params.remove_generic_param(ast::GenericParam::TypeParam(type_param));
|
generic_params.remove_generic_param(ast::GenericParam::TypeParam(type_param));
|
||||||
if generic_params.generic_params().count() == 0 {
|
if generic_params.generic_params().count() == 0 {
|
||||||
@ -92,31 +87,84 @@ pub(crate) fn replace_named_generic_with_impl(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// get type bounds in signature type: `P` -> `impl AsRef<Path>`
|
|
||||||
let new_bounds = impl_trait_type(type_bound_list);
|
let new_bounds = impl_trait_type(type_bound_list);
|
||||||
for param_type in param_types.iter().rev() {
|
for path_type in path_types_to_replace.iter().rev() {
|
||||||
ted::replace(param_type.syntax(), new_bounds.clone_for_update().syntax());
|
ted::replace(path_type.syntax(), new_bounds.clone_for_update().syntax());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_referenced_outside(
|
fn find_path_type(
|
||||||
sema: &Semantics<'_, RootDatabase>,
|
sema: &Semantics<'_, RootDatabase>,
|
||||||
type_param_def: Definition,
|
type_param_name: &Name,
|
||||||
fn_: &ast::Fn,
|
param: &NameLike,
|
||||||
file_id: FileId,
|
) -> Option<PathType> {
|
||||||
) -> bool {
|
let path_type =
|
||||||
// limit search scope to function body & return type
|
sema.ancestors_with_macros(param.syntax().clone()).find_map(ast::PathType::cast)?;
|
||||||
let search_ranges = vec![
|
|
||||||
fn_.body().map(|body| body.syntax().text_range()),
|
|
||||||
fn_.ret_type().map(|ret_type| ret_type.syntax().text_range()),
|
|
||||||
];
|
|
||||||
|
|
||||||
search_ranges.into_iter().flatten().any(|search_range| {
|
// Ignore any path types that look like `P::Assoc`
|
||||||
let file_range = FileRange { file_id, range: search_range };
|
if path_type.path()?.as_single_name_ref()?.text() != type_param_name.text() {
|
||||||
!type_param_def.usages(sema).in_scope(SearchScope::file_range(file_range)).all().is_empty()
|
return None;
|
||||||
})
|
}
|
||||||
|
|
||||||
|
let ancestors = sema.ancestors_with_macros(path_type.syntax().clone());
|
||||||
|
|
||||||
|
let mut in_generic_arg_list = false;
|
||||||
|
let mut is_associated_type = false;
|
||||||
|
|
||||||
|
// walking the ancestors checks them in a heuristic way until the `Fn` node is reached.
|
||||||
|
for ancestor in ancestors {
|
||||||
|
match_ast! {
|
||||||
|
match ancestor {
|
||||||
|
ast::PathSegment(ps) => {
|
||||||
|
match ps.kind()? {
|
||||||
|
ast::PathSegmentKind::Name(_name_ref) => (),
|
||||||
|
ast::PathSegmentKind::Type { .. } => return None,
|
||||||
|
_ => return None,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ast::GenericArgList(_) => {
|
||||||
|
in_generic_arg_list = true;
|
||||||
|
},
|
||||||
|
ast::AssocTypeArg(_) => {
|
||||||
|
is_associated_type = true;
|
||||||
|
},
|
||||||
|
ast::ImplTraitType(_) => {
|
||||||
|
if in_generic_arg_list && !is_associated_type {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ast::DynTraitType(_) => {
|
||||||
|
if !is_associated_type {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ast::Fn(_) => return Some(path_type),
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns all usage references for the given type parameter definition.
|
||||||
|
fn find_usages(
|
||||||
|
sema: &Semantics<'_, RootDatabase>,
|
||||||
|
fn_: &ast::Fn,
|
||||||
|
type_param_def: Definition,
|
||||||
|
file_id: FileId,
|
||||||
|
) -> UsageSearchResult {
|
||||||
|
let file_range = FileRange { file_id, range: fn_.syntax().text_range() };
|
||||||
|
type_param_def.usages(sema).in_scope(SearchScope::file_range(file_range)).all()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn check_valid_usages(usages: &UsageSearchResult, param_list_range: TextRange) -> bool {
|
||||||
|
usages
|
||||||
|
.iter()
|
||||||
|
.flat_map(|(_, usage_refs)| usage_refs)
|
||||||
|
.all(|usage_ref| param_list_range.contains_range(usage_ref.range))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
@ -152,6 +200,96 @@ fn replace_generic_trait_applies_to_all_matching_params() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_trait_applies_to_generic_arguments_in_params() {
|
||||||
|
check_assist(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"
|
||||||
|
fn foo<P$0: Trait>(
|
||||||
|
_: P,
|
||||||
|
_: Option<P>,
|
||||||
|
_: Option<Option<P>>,
|
||||||
|
_: impl Iterator<Item = P>,
|
||||||
|
_: &dyn Iterator<Item = P>,
|
||||||
|
) {}
|
||||||
|
"#,
|
||||||
|
r#"
|
||||||
|
fn foo(
|
||||||
|
_: impl Trait,
|
||||||
|
_: Option<impl Trait>,
|
||||||
|
_: Option<Option<impl Trait>>,
|
||||||
|
_: impl Iterator<Item = impl Trait>,
|
||||||
|
_: &dyn Iterator<Item = impl Trait>,
|
||||||
|
) {}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_when_one_param_type_is_invalid() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"
|
||||||
|
fn foo<P$0: Trait>(
|
||||||
|
_: i32,
|
||||||
|
_: Option<P>,
|
||||||
|
_: Option<Option<P>>,
|
||||||
|
_: impl Iterator<Item = P>,
|
||||||
|
_: &dyn Iterator<Item = P>,
|
||||||
|
_: <P as Trait>::Assoc,
|
||||||
|
) {}
|
||||||
|
"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_when_referenced_in_where_clause() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"fn foo<P$0: Trait, I>() where I: FromRef<P> {}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_when_used_with_type_alias() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"fn foo<P$0: Trait>(p: <P as Trait>::Assoc) {}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_when_used_as_argument_in_outer_trait_alias() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"fn foo<P$0: Trait>(_: <() as OtherTrait<P>>::Assoc) {}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_with_inner_associated_type() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"fn foo<P$0: Trait>(_: P::Assoc) {}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_when_passed_into_outer_impl_trait() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"fn foo<P$0: Trait>(_: impl OtherTrait<P>) {}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn replace_generic_not_applicable_when_used_in_passed_function_parameter() {
|
||||||
|
check_assist_not_applicable(
|
||||||
|
replace_named_generic_with_impl,
|
||||||
|
r#"fn foo<P$0: Trait>(_: &dyn Fn(P)) {}"#,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn replace_generic_with_multiple_generic_params() {
|
fn replace_generic_with_multiple_generic_params() {
|
||||||
check_assist(
|
check_assist(
|
||||||
|
Loading…
Reference in New Issue
Block a user