Skip to content

Commit faacc3b

Browse files
committed
fix lint failures in clippy
1 parent 374aded commit faacc3b

14 files changed

+16
-16
lines changed

src/tools/clippy/clippy_lints/src/dereference.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ fn deref_method_same_type<'tcx>(result_ty: Ty<'tcx>, arg_ty: Ty<'tcx>) -> bool {
701701

702702
fn in_postfix_position<'tcx>(cx: &LateContext<'tcx>, e: &'tcx Expr<'tcx>) -> bool {
703703
if let Some(parent) = get_parent_expr(cx, e)
704-
&& parent.span.ctxt() == e.span.ctxt()
704+
&& parent.span.eq_ctxt(e.span)
705705
{
706706
match parent.kind {
707707
ExprKind::Call(child, _) | ExprKind::MethodCall(_, child, _, _) | ExprKind::Index(child, _, _)

src/tools/clippy/clippy_lints/src/entry.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ fn try_parse_contains<'tcx>(cx: &LateContext<'_>, expr: &'tcx Expr<'_>) -> Optio
241241
},
242242
],
243243
_,
244-
) if key_span.ctxt() == expr.span.ctxt() => {
244+
) if key_span.eq_ctxt(expr.span) => {
245245
let id = cx.typeck_results().type_dependent_def_id(expr.hir_id)?;
246246
let expr = ContainsExpr {
247247
negated,

src/tools/clippy/clippy_lints/src/formatting.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ fn check_array(cx: &EarlyContext<'_>, expr: &Expr) {
274274
for element in array {
275275
if_chain! {
276276
if let ExprKind::Binary(ref op, ref lhs, _) = element.kind;
277-
if has_unary_equivalent(op.node) && lhs.span.ctxt() == op.span.ctxt();
277+
if has_unary_equivalent(op.node) && lhs.span.eq_ctxt(op.span);
278278
let space_span = lhs.span.between(op.span);
279279
if let Some(space_snippet) = snippet_opt(cx, space_span);
280280
let lint_span = lhs.span.with_lo(lhs.span.hi());

src/tools/clippy/clippy_lints/src/let_with_type_underscore.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl LateLintPass<'_> for UnderscoreTyped {
3131
if !in_external_macro(cx.tcx.sess, local.span);
3232
if let Some(ty) = local.ty; // Ensure that it has a type defined
3333
if let TyKind::Infer = &ty.kind; // that type is '_'
34-
if local.span.ctxt() == ty.span.ctxt();
34+
if local.span.eq_ctxt(ty.span);
3535
then {
3636
// NOTE: Using `is_from_proc_macro` on `init` will require that it's initialized,
3737
// this doesn't. Alternatively, `WithSearchPat` can be implemented for `Ty`

src/tools/clippy/clippy_lints/src/manual_let_else.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl<'tcx> QuestionMark {
5959
let Some(init) = local.init &&
6060
local.els.is_none() &&
6161
local.ty.is_none() &&
62-
init.span.ctxt() == stmt.span.ctxt() &&
62+
init.span.eq_ctxt(stmt.span) &&
6363
let Some(if_let_or_match) = IfLetOrMatch::parse(cx, init)
6464
{
6565
match if_let_or_match {

src/tools/clippy/clippy_lints/src/matches/collapsible_match.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fn check_arm<'tcx>(
5757
}
5858
},
5959
};
60-
if outer_pat.span.ctxt() == inner_scrutinee.span.ctxt();
60+
if outer_pat.span.eq_ctxt(inner_scrutinee.span);
6161
// match expression must be a local binding
6262
// match <local> { .. }
6363
if let Some(binding_id) = path_to_local(peel_ref_operators(cx, inner_scrutinee));

src/tools/clippy/clippy_lints/src/matches/manual_utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ where
119119
// it's being passed by value.
120120
let scrutinee = peel_hir_expr_refs(scrutinee).0;
121121
let (scrutinee_str, _) = snippet_with_context(cx, scrutinee.span, expr_ctxt, "..", &mut app);
122-
let scrutinee_str = if scrutinee.span.ctxt() == expr.span.ctxt() && scrutinee.precedence().order() < PREC_POSTFIX {
122+
let scrutinee_str = if scrutinee.span.eq_ctxt(expr.span) && scrutinee.precedence().order() < PREC_POSTFIX {
123123
format!("({scrutinee_str})")
124124
} else {
125125
scrutinee_str.into()
@@ -130,7 +130,7 @@ where
130130
if_chain! {
131131
if !some_expr.needs_unsafe_block;
132132
if let Some(func) = can_pass_as_func(cx, id, some_expr.expr);
133-
if func.span.ctxt() == some_expr.expr.span.ctxt();
133+
if func.span.eq_ctxt(some_expr.expr.span);
134134
then {
135135
snippet_with_applicability(cx, func.span, "..", &mut app).into_owned()
136136
} else {

src/tools/clippy/clippy_lints/src/methods/map_unwrap_or.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub(super) fn check<'tcx>(
5656
// lint, with note if neither arg is > 1 line and both map() and
5757
// unwrap_or_else() have the same span
5858
let multiline = map_snippet.lines().count() > 1 || unwrap_snippet.lines().count() > 1;
59-
let same_span = map_arg.span.ctxt() == unwrap_arg.span.ctxt();
59+
let same_span = map_arg.span.eq_ctxt(unwrap_arg.span);
6060
if same_span && !multiline {
6161
let var_snippet = snippet(cx, recv.span, "..");
6262
span_lint_and_sugg(

src/tools/clippy/clippy_lints/src/needless_question_mark.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ fn check(cx: &LateContext<'_>, expr: &Expr<'_>) {
125125
if let ExprKind::Match(inner_expr_with_q, _, MatchSource::TryDesugar(_)) = &arg.kind;
126126
if let ExprKind::Call(called, [inner_expr]) = &inner_expr_with_q.kind;
127127
if let ExprKind::Path(QPath::LangItem(LangItem::TryTraitBranch, ..)) = &called.kind;
128-
if expr.span.ctxt() == inner_expr.span.ctxt();
128+
if expr.span.eq_ctxt(inner_expr.span);
129129
let expr_ty = cx.typeck_results().expr_ty(expr);
130130
let inner_ty = cx.typeck_results().expr_ty(inner_expr);
131131
if expr_ty == inner_ty;

src/tools/clippy/clippy_lints/src/non_octal_unix_permissions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl<'tcx> LateLintPass<'tcx> for NonOctalUnixPermissions {
5151
|| (path.ident.name == sym!(set_mode)
5252
&& cx.tcx.is_diagnostic_item(sym::FsPermissions, adt.did()));
5353
if let ExprKind::Lit(_) = param.kind;
54-
if param.span.ctxt() == expr.span.ctxt();
54+
if param.span.eq_ctxt(expr.span);
5555

5656
then {
5757
let Some(snip) = snippet_opt(cx, param.span) else {
@@ -70,7 +70,7 @@ impl<'tcx> LateLintPass<'tcx> for NonOctalUnixPermissions {
7070
if let Some(def_id) = cx.qpath_res(path, func.hir_id).opt_def_id();
7171
if match_def_path(cx, def_id, &paths::PERMISSIONS_FROM_MODE);
7272
if let ExprKind::Lit(_) = param.kind;
73-
if param.span.ctxt() == expr.span.ctxt();
73+
if param.span.eq_ctxt(expr.span);
7474
if let Some(snip) = snippet_opt(cx, param.span);
7575
if !snip.starts_with("0o");
7676
then {

src/tools/clippy/clippy_lints/src/redundant_async_block.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl<'tcx> LateLintPass<'tcx> for RedundantAsyncBlock {
4848
let Some(body_expr) = desugar_async_block(cx, expr) &&
4949
let Some(expr) = desugar_await(peel_blocks(body_expr)) &&
5050
// The await prefix must not come from a macro as its content could change in the future.
51-
expr.span.ctxt() == body_expr.span.ctxt() &&
51+
expr.span.eq_ctxt(body_expr.span) &&
5252
// An async block does not have immediate side-effects from a `.await` point-of-view.
5353
(!expr.can_have_side_effects() || desugar_async_block(cx, expr).is_some()) &&
5454
let Some(shortened_span) = walk_span_to_context(expr.span, span.ctxt())

src/tools/clippy/clippy_lints/src/reference.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl EarlyLintPass for DerefAddrOf {
5050
if_chain! {
5151
if let ExprKind::Unary(UnOp::Deref, ref deref_target) = e.kind;
5252
if let ExprKind::AddrOf(_, ref mutability, ref addrof_target) = without_parens(deref_target).kind;
53-
if deref_target.span.ctxt() == e.span.ctxt();
53+
if deref_target.span.eq_ctxt(e.span);
5454
if !addrof_target.span.from_expansion();
5555
then {
5656
let mut applicability = Applicability::MachineApplicable;

src/tools/clippy/clippy_lints/src/suspicious_xor_used_as_pow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ impl LateLintPass<'_> for ConfusingXorAndPow {
3333
if !in_external_macro(cx.sess(), expr.span)
3434
&& let ExprKind::Binary(op, left, right) = &expr.kind
3535
&& op.node == BinOpKind::BitXor
36-
&& left.span.ctxt() == right.span.ctxt()
36+
&& left.span.eq_ctxt(right.span)
3737
&& let ExprKind::Lit(lit_left) = &left.kind
3838
&& let ExprKind::Lit(lit_right) = &right.kind
3939
&& matches!(lit_right.node, LitKind::Int(..) | LitKind::Float(..))

src/tools/clippy/clippy_utils/src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ impl<'a> PanicExpn<'a> {
245245
return None;
246246
};
247247
let result = match name {
248-
"panic" if arg.span.ctxt() == expr.span.ctxt() => Self::Empty,
248+
"panic" if arg.span.eq_ctxt(expr.span) => Self::Empty,
249249
"panic" | "panic_str" => Self::Str(arg),
250250
"panic_display" | "panic_cold_display" => {
251251
let ExprKind::AddrOf(_, _, e) = &arg.kind else {

0 commit comments

Comments
 (0)