handle the byref binding in the struct pattern
This commit is contained in:
parent
7f870201d3
commit
8d3bbb0964
@ -2,11 +2,12 @@
|
|||||||
use clippy_utils::path_to_local;
|
use clippy_utils::path_to_local;
|
||||||
use clippy_utils::source::snippet_with_applicability;
|
use clippy_utils::source::snippet_with_applicability;
|
||||||
use clippy_utils::visitors::{for_each_expr, is_local_used};
|
use clippy_utils::visitors::{for_each_expr, is_local_used};
|
||||||
use rustc_ast::LitKind;
|
use rustc_ast::{BorrowKind, LitKind};
|
||||||
use rustc_errors::Applicability;
|
use rustc_errors::Applicability;
|
||||||
use rustc_hir::def::{DefKind, Res};
|
use rustc_hir::def::{DefKind, Res};
|
||||||
use rustc_hir::{Arm, BinOpKind, Expr, ExprKind, Guard, MatchSource, Node, Pat, PatKind};
|
use rustc_hir::{Arm, BinOpKind, Expr, ExprKind, Guard, MatchSource, Node, Pat, PatKind};
|
||||||
use rustc_lint::LateContext;
|
use rustc_lint::LateContext;
|
||||||
|
use rustc_span::symbol::Ident;
|
||||||
use rustc_span::Span;
|
use rustc_span::Span;
|
||||||
use std::ops::ControlFlow;
|
use std::ops::ControlFlow;
|
||||||
|
|
||||||
@ -34,45 +35,37 @@ pub(super) fn check<'tcx>(cx: &LateContext<'tcx>, arms: &'tcx [Arm<'tcx>]) {
|
|||||||
],
|
],
|
||||||
MatchSource::Normal,
|
MatchSource::Normal,
|
||||||
) = if_expr.kind
|
) = if_expr.kind
|
||||||
&& let Some((binding_span, is_field, is_byref)) = get_pat_binding(cx, scrutinee, outer_arm)
|
&& let Some(binding) = get_pat_binding(cx, scrutinee, outer_arm)
|
||||||
{
|
{
|
||||||
if is_field && is_byref { return; }
|
let pat_span = match (arm.pat.kind, binding.byref_ident) {
|
||||||
let pat_span = if let PatKind::Ref(pat, _) = arm.pat.kind {
|
(PatKind::Ref(pat, _), Some(_)) => pat.span,
|
||||||
if is_byref { pat.span } else { continue; }
|
(PatKind::Ref(..), None) | (_, Some(_)) => continue,
|
||||||
} else {
|
_ => arm.pat.span,
|
||||||
if is_byref { continue; }
|
|
||||||
arm.pat.span
|
|
||||||
};
|
};
|
||||||
|
|
||||||
emit_redundant_guards(
|
emit_redundant_guards(
|
||||||
cx,
|
cx,
|
||||||
outer_arm,
|
outer_arm,
|
||||||
if_expr.span,
|
if_expr.span,
|
||||||
pat_span,
|
pat_span,
|
||||||
binding_span,
|
&binding,
|
||||||
is_field,
|
|
||||||
arm.guard,
|
arm.guard,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// `Some(x) if let Some(2) = x`
|
// `Some(x) if let Some(2) = x`
|
||||||
else if let Guard::IfLet(let_expr) = guard
|
else if let Guard::IfLet(let_expr) = guard
|
||||||
&& let Some((binding_span, is_field, is_byref)) = get_pat_binding(cx, let_expr.init, outer_arm)
|
&& let Some(binding) = get_pat_binding(cx, let_expr.init, outer_arm)
|
||||||
{
|
{
|
||||||
if is_field && is_byref { return; }
|
let pat_span = match (let_expr.pat.kind, binding.byref_ident) {
|
||||||
let pat_span = if let PatKind::Ref(pat, _) = let_expr.pat.kind {
|
(PatKind::Ref(pat, _), Some(_)) => pat.span,
|
||||||
if is_byref && !is_field { pat.span } else { continue; }
|
(PatKind::Ref(..), None) | (_, Some(_)) => continue,
|
||||||
} else {
|
_ => let_expr.pat.span,
|
||||||
if is_byref { continue; }
|
|
||||||
let_expr.pat.span
|
|
||||||
};
|
};
|
||||||
|
|
||||||
emit_redundant_guards(
|
emit_redundant_guards(
|
||||||
cx,
|
cx,
|
||||||
outer_arm,
|
outer_arm,
|
||||||
let_expr.span,
|
let_expr.span,
|
||||||
pat_span,
|
pat_span,
|
||||||
binding_span,
|
&binding,
|
||||||
is_field,
|
|
||||||
None,
|
None,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -88,61 +81,63 @@ pub(super) fn check<'tcx>(cx: &LateContext<'tcx>, arms: &'tcx [Arm<'tcx>]) {
|
|||||||
//
|
//
|
||||||
// This isn't necessary in the other two checks, as they must be a pattern already.
|
// This isn't necessary in the other two checks, as they must be a pattern already.
|
||||||
&& cx.typeck_results().expr_ty(local) == cx.typeck_results().expr_ty(pat)
|
&& cx.typeck_results().expr_ty(local) == cx.typeck_results().expr_ty(pat)
|
||||||
&& let Some((binding_span, is_field, is_byref)) = get_pat_binding(cx, local, outer_arm)
|
&& let Some(binding) = get_pat_binding(cx, local, outer_arm)
|
||||||
{
|
{
|
||||||
if is_field && is_byref { return; }
|
let pat_span = match (pat.kind, binding.byref_ident) {
|
||||||
let pat_span = if let ExprKind::AddrOf(rustc_ast::BorrowKind::Ref, _, expr) = pat.kind {
|
(ExprKind::AddrOf(BorrowKind::Ref, _, expr), Some(_)) => expr.span,
|
||||||
if is_byref { expr.span } else { continue; }
|
(ExprKind::AddrOf(..), None) | (_, Some(_)) => continue,
|
||||||
} else {
|
_ => pat.span,
|
||||||
if is_byref { continue; }
|
|
||||||
pat.span
|
|
||||||
};
|
};
|
||||||
|
|
||||||
emit_redundant_guards(
|
emit_redundant_guards(
|
||||||
cx,
|
cx,
|
||||||
outer_arm,
|
outer_arm,
|
||||||
if_expr.span,
|
if_expr.span,
|
||||||
pat_span,
|
pat_span,
|
||||||
binding_span,
|
&binding,
|
||||||
is_field,
|
|
||||||
None,
|
None,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct PatBindingInfo {
|
||||||
|
span: Span,
|
||||||
|
byref_ident: Option<Ident>,
|
||||||
|
is_field: bool,
|
||||||
|
}
|
||||||
|
|
||||||
fn get_pat_binding<'tcx>(
|
fn get_pat_binding<'tcx>(
|
||||||
cx: &LateContext<'tcx>,
|
cx: &LateContext<'tcx>,
|
||||||
guard_expr: &Expr<'_>,
|
guard_expr: &Expr<'_>,
|
||||||
outer_arm: &Arm<'tcx>,
|
outer_arm: &Arm<'tcx>,
|
||||||
) -> Option<(Span, bool, bool)> {
|
) -> Option<PatBindingInfo> {
|
||||||
if let Some(local) = path_to_local(guard_expr) && !is_local_used(cx, outer_arm.body, local) {
|
if let Some(local) = path_to_local(guard_expr) && !is_local_used(cx, outer_arm.body, local) {
|
||||||
let mut span = None;
|
let mut span = None;
|
||||||
|
let mut byref_ident = None;
|
||||||
let mut multiple_bindings = false;
|
let mut multiple_bindings = false;
|
||||||
let mut is_byref = false;
|
|
||||||
// `each_binding` gives the `HirId` of the `Pat` itself, not the binding
|
// `each_binding` gives the `HirId` of the `Pat` itself, not the binding
|
||||||
outer_arm.pat.walk(|pat| {
|
outer_arm.pat.walk(|pat| {
|
||||||
if let PatKind::Binding(bind_annot, hir_id, _, _) = pat.kind
|
if let PatKind::Binding(bind_annot, hir_id, ident, _) = pat.kind
|
||||||
&& hir_id == local
|
&& hir_id == local
|
||||||
{
|
{
|
||||||
is_byref = matches!(bind_annot.0, rustc_ast::ByRef::Yes);
|
if matches!(bind_annot.0, rustc_ast::ByRef::Yes) {
|
||||||
|
let _ = byref_ident.insert(ident);
|
||||||
|
}
|
||||||
|
// the second call of `replce()` returns a `Some(span)`, meaning a multi-binding pattern
|
||||||
if span.replace(pat.span).is_some() {
|
if span.replace(pat.span).is_some() {
|
||||||
multiple_bindings = true;
|
multiple_bindings = true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
true
|
true
|
||||||
});
|
});
|
||||||
|
|
||||||
// Ignore bindings from or patterns, like `First(x) | Second(x, _) | Third(x, _, _)`
|
// Ignore bindings from or patterns, like `First(x) | Second(x, _) | Third(x, _, _)`
|
||||||
if !multiple_bindings {
|
if !multiple_bindings {
|
||||||
return span.map(|span| {
|
return span.map(|span| PatBindingInfo {
|
||||||
(
|
|
||||||
span,
|
span,
|
||||||
matches!(cx.tcx.hir().get_parent(local), Node::PatField(_)),
|
byref_ident,
|
||||||
is_byref,
|
is_field: matches!(cx.tcx.hir().get_parent(local), Node::PatField(_)),
|
||||||
)
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -155,8 +150,7 @@ fn emit_redundant_guards<'tcx>(
|
|||||||
outer_arm: &Arm<'tcx>,
|
outer_arm: &Arm<'tcx>,
|
||||||
guard_span: Span,
|
guard_span: Span,
|
||||||
pat_span: Span,
|
pat_span: Span,
|
||||||
binding_span: Span,
|
pat_binding: &PatBindingInfo,
|
||||||
field_binding: bool,
|
|
||||||
inner_guard: Option<Guard<'_>>,
|
inner_guard: Option<Guard<'_>>,
|
||||||
) {
|
) {
|
||||||
let mut app = Applicability::MaybeIncorrect;
|
let mut app = Applicability::MaybeIncorrect;
|
||||||
@ -168,14 +162,21 @@ fn emit_redundant_guards<'tcx>(
|
|||||||
"redundant guard",
|
"redundant guard",
|
||||||
|diag| {
|
|diag| {
|
||||||
let binding_replacement = snippet_with_applicability(cx, pat_span, "<binding_repl>", &mut app);
|
let binding_replacement = snippet_with_applicability(cx, pat_span, "<binding_repl>", &mut app);
|
||||||
|
let suggestion_span = match *pat_binding {
|
||||||
|
PatBindingInfo {
|
||||||
|
span,
|
||||||
|
byref_ident: Some(ident),
|
||||||
|
is_field: true,
|
||||||
|
} => (span, format!("{ident}: {binding_replacement}")),
|
||||||
|
PatBindingInfo {
|
||||||
|
span, is_field: true, ..
|
||||||
|
} => (span.shrink_to_hi(), format!(": {binding_replacement}")),
|
||||||
|
PatBindingInfo { span, .. } => (span, binding_replacement.into_owned()),
|
||||||
|
};
|
||||||
diag.multipart_suggestion_verbose(
|
diag.multipart_suggestion_verbose(
|
||||||
"try",
|
"try",
|
||||||
vec![
|
vec![
|
||||||
if field_binding {
|
suggestion_span,
|
||||||
(binding_span.shrink_to_hi(), format!(": {binding_replacement}"))
|
|
||||||
} else {
|
|
||||||
(binding_span, binding_replacement.into_owned())
|
|
||||||
},
|
|
||||||
(
|
(
|
||||||
guard_span.source_callsite().with_lo(outer_arm.pat.span.hi()),
|
guard_span.source_callsite().with_lo(outer_arm.pat.span.hi()),
|
||||||
inner_guard.map_or_else(String::new, |guard| {
|
inner_guard.map_or_else(String::new, |guard| {
|
||||||
|
@ -177,9 +177,9 @@ mod issue11465 {
|
|||||||
};
|
};
|
||||||
match struct_b {
|
match struct_b {
|
||||||
B { ref b, .. } if b == "bar" => {},
|
B { ref b, .. } if b == "bar" => {},
|
||||||
B { ref c, .. } if c == &1 => {},
|
B { c: 1, .. } => {},
|
||||||
B { ref c, .. } if let &1 = c => {},
|
B { c: 1, .. } => {},
|
||||||
B { ref c, .. } if matches!(c, &1) => {},
|
B { c: 1, .. } => {},
|
||||||
_ => {},
|
_ => {},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -130,5 +130,41 @@ LL - Some(ref x) if matches!(x, &3) => {},
|
|||||||
LL + Some(3) => {},
|
LL + Some(3) => {},
|
||||||
|
|
|
|
||||||
|
|
||||||
error: aborting due to 11 previous errors
|
error: redundant guard
|
||||||
|
--> $DIR/redundant_guards.rs:180:32
|
||||||
|
|
|
||||||
|
LL | B { ref c, .. } if c == &1 => {},
|
||||||
|
| ^^^^^^^
|
||||||
|
|
|
||||||
|
help: try
|
||||||
|
|
|
||||||
|
LL - B { ref c, .. } if c == &1 => {},
|
||||||
|
LL + B { c: 1, .. } => {},
|
||||||
|
|
|
||||||
|
|
||||||
|
error: redundant guard
|
||||||
|
--> $DIR/redundant_guards.rs:181:32
|
||||||
|
|
|
||||||
|
LL | B { ref c, .. } if let &1 = c => {},
|
||||||
|
| ^^^^^^^^^^
|
||||||
|
|
|
||||||
|
help: try
|
||||||
|
|
|
||||||
|
LL - B { ref c, .. } if let &1 = c => {},
|
||||||
|
LL + B { c: 1, .. } => {},
|
||||||
|
|
|
||||||
|
|
||||||
|
error: redundant guard
|
||||||
|
--> $DIR/redundant_guards.rs:182:32
|
||||||
|
|
|
||||||
|
LL | B { ref c, .. } if matches!(c, &1) => {},
|
||||||
|
| ^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
|
help: try
|
||||||
|
|
|
||||||
|
LL - B { ref c, .. } if matches!(c, &1) => {},
|
||||||
|
LL + B { c: 1, .. } => {},
|
||||||
|
|
|
||||||
|
|
||||||
|
error: aborting due to 14 previous errors
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user