mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 07:04:49 +00:00
fmt
This commit is contained in:
parent
76e0429048
commit
778e71b15f
1 changed files with 3 additions and 1 deletions
|
@ -79,7 +79,9 @@ pub(crate) fn add_turbo_fish(acc: &mut Assists, ctx: &AssistContext) -> Option<(
|
|||
|
||||
let number_of_arguments = generics
|
||||
.iter()
|
||||
.filter(|param| matches!(param, hir::GenericParam::TypeParam(_) | hir::GenericParam::ConstParam(_)))
|
||||
.filter(|param| {
|
||||
matches!(param, hir::GenericParam::TypeParam(_) | hir::GenericParam::ConstParam(_))
|
||||
})
|
||||
.count();
|
||||
let fish_head = std::iter::repeat("_").take(number_of_arguments).collect::<Vec<_>>().join(",");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue