Skip to content

Commit af546db

Browse files
authored
Rollup merge of #91481 - est31:let_else, r=jackh726
Use let_else in some more places in rustc_lint Follow-up of #91018 and #89933 . Also cc #90985 which added the first let_else uses to rustc_lint.
2 parents f9587b6 + bdc4b46 commit af546db

File tree

6 files changed

+52
-69
lines changed

6 files changed

+52
-69
lines changed

compiler/rustc_lint/src/array_into_iter.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,8 @@ impl<'tcx> LateLintPass<'tcx> for ArrayIntoIter {
7979
let receiver_ty = cx.typeck_results().expr_ty(receiver_arg);
8080
let adjustments = cx.typeck_results().expr_adjustments(receiver_arg);
8181

82-
let target = match adjustments.last() {
83-
Some(Adjustment { kind: Adjust::Borrow(_), target }) => target,
84-
_ => return,
82+
let Some(Adjustment { kind: Adjust::Borrow(_), target }) = adjustments.last() else {
83+
return
8584
};
8685

8786
let types =

compiler/rustc_lint/src/builtin.rs

+29-35
Original file line numberDiff line numberDiff line change
@@ -609,14 +609,12 @@ impl<'tcx> LateLintPass<'tcx> for MissingDoc {
609609
// If the trait is private, add the impl items to `private_traits` so they don't get
610610
// reported for missing docs.
611611
let real_trait = trait_ref.path.res.def_id();
612-
if let Some(def_id) = real_trait.as_local() {
613-
let hir_id = cx.tcx.hir().local_def_id_to_hir_id(def_id);
614-
if let Some(Node::Item(item)) = cx.tcx.hir().find(hir_id) {
615-
if let hir::VisibilityKind::Inherited = item.vis.node {
616-
for impl_item_ref in items {
617-
self.private_traits.insert(impl_item_ref.id.hir_id());
618-
}
619-
}
612+
let Some(def_id) = real_trait.as_local() else { return };
613+
let hir_id = cx.tcx.hir().local_def_id_to_hir_id(def_id);
614+
let Some(Node::Item(item)) = cx.tcx.hir().find(hir_id) else { return };
615+
if let hir::VisibilityKind::Inherited = item.vis.node {
616+
for impl_item_ref in items {
617+
self.private_traits.insert(impl_item_ref.id.hir_id());
620618
}
621619
}
622620
return;
@@ -829,9 +827,8 @@ impl<'tcx> LateLintPass<'tcx> for MissingDebugImplementations {
829827
_ => return,
830828
}
831829

832-
let debug = match cx.tcx.get_diagnostic_item(sym::Debug) {
833-
Some(debug) => debug,
834-
None => return,
830+
let Some(debug) = cx.tcx.get_diagnostic_item(sym::Debug) else {
831+
return
835832
};
836833

837834
if self.impling_types.is_none() {
@@ -1509,9 +1506,8 @@ impl TypeAliasBounds {
15091506

15101507
impl<'tcx> LateLintPass<'tcx> for TypeAliasBounds {
15111508
fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
1512-
let (ty, type_alias_generics) = match item.kind {
1513-
hir::ItemKind::TyAlias(ref ty, ref generics) => (&*ty, generics),
1514-
_ => return,
1509+
let hir::ItemKind::TyAlias(ty, type_alias_generics) = &item.kind else {
1510+
return
15151511
};
15161512
if let hir::TyKind::OpaqueDef(..) = ty.kind {
15171513
// Bounds are respected for `type X = impl Trait`
@@ -2266,16 +2262,15 @@ impl<'tcx> LateLintPass<'tcx> for ExplicitOutlivesRequirements {
22662262
// and should check for them here.
22672263
match predicate.bounded_ty.kind {
22682264
hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) => {
2269-
if let Res::Def(DefKind::TyParam, def_id) = path.res {
2270-
let index = ty_generics.param_def_id_to_index[&def_id];
2271-
(
2272-
Self::lifetimes_outliving_type(inferred_outlives, index),
2273-
&predicate.bounds,
2274-
predicate.span,
2275-
)
2276-
} else {
2277-
continue;
2278-
}
2265+
let Res::Def(DefKind::TyParam, def_id) = path.res else {
2266+
continue
2267+
};
2268+
let index = ty_generics.param_def_id_to_index[&def_id];
2269+
(
2270+
Self::lifetimes_outliving_type(inferred_outlives, index),
2271+
&predicate.bounds,
2272+
predicate.span,
2273+
)
22792274
}
22802275
_ => {
22812276
continue;
@@ -3216,18 +3211,17 @@ impl<'tcx> LateLintPass<'tcx> for NamedAsmLabels {
32163211
for (idx, _) in statement.match_indices(':') {
32173212
let possible_label = statement[start_idx..idx].trim();
32183213
let mut chars = possible_label.chars();
3219-
if let Some(c) = chars.next() {
3220-
// A label starts with an alphabetic character or . or _ and continues with alphanumeric characters, _, or $
3221-
if (c.is_alphabetic() || matches!(c, '.' | '_'))
3222-
&& chars.all(|c| c.is_alphanumeric() || matches!(c, '_' | '$'))
3223-
{
3224-
found_labels.push(possible_label);
3225-
} else {
3226-
// If we encounter a non-label, there cannot be any further labels, so stop checking
3227-
break;
3228-
}
3229-
} else {
3214+
let Some(c) = chars.next() else {
32303215
// Empty string means a leading ':' in this section, which is not a label
3216+
break
3217+
};
3218+
// A label starts with an alphabetic character or . or _ and continues with alphanumeric characters, _, or $
3219+
if (c.is_alphabetic() || matches!(c, '.' | '_'))
3220+
&& chars.all(|c| c.is_alphanumeric() || matches!(c, '_' | '$'))
3221+
{
3222+
found_labels.push(possible_label);
3223+
} else {
3224+
// If we encounter a non-label, there cannot be any further labels, so stop checking
32313225
break;
32323226
}
32333227

compiler/rustc_lint/src/levels.rs

+6-9
Original file line numberDiff line numberDiff line change
@@ -227,14 +227,12 @@ impl<'s> LintLevelsBuilder<'s> {
227227
let sess = self.sess;
228228
let bad_attr = |span| struct_span_err!(sess, span, E0452, "malformed lint attribute input");
229229
for attr in attrs {
230-
let level = match Level::from_symbol(attr.name_or_empty()) {
231-
None => continue,
232-
Some(lvl) => lvl,
230+
let Some(level) = Level::from_symbol(attr.name_or_empty()) else {
231+
continue
233232
};
234233

235-
let mut metas = match attr.meta_item_list() {
236-
Some(x) => x,
237-
None => continue,
234+
let Some(mut metas) = attr.meta_item_list() else {
235+
continue
238236
};
239237

240238
if metas.is_empty() {
@@ -481,9 +479,8 @@ impl<'s> LintLevelsBuilder<'s> {
481479
continue;
482480
}
483481

484-
let (lint_attr_name, lint_attr_span) = match *src {
485-
LintLevelSource::Node(name, span, _) => (name, span),
486-
_ => continue,
482+
let LintLevelSource::Node(lint_attr_name, lint_attr_span, _) = *src else {
483+
continue
487484
};
488485

489486
let lint = builtin::UNUSED_ATTRIBUTES;

compiler/rustc_lint/src/noop_method_call.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ declare_lint_pass!(NoopMethodCall => [NOOP_METHOD_CALL]);
4040
impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
4141
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
4242
// We only care about method calls.
43-
let (call, elements) = match expr.kind {
44-
ExprKind::MethodCall(call, _, elements, _) => (call, elements),
45-
_ => return,
43+
let ExprKind::MethodCall(call, _, elements, _) = &expr.kind else {
44+
return
4645
};
4746
// We only care about method calls corresponding to the `Clone`, `Deref` and `Borrow`
4847
// traits and ignore any other method call.
@@ -70,9 +69,8 @@ impl<'tcx> LateLintPass<'tcx> for NoopMethodCall {
7069
}
7170
let param_env = cx.tcx.param_env(trait_id);
7271
// Resolve the trait method instance.
73-
let i = match ty::Instance::resolve(cx.tcx, param_env, did, substs) {
74-
Ok(Some(i)) => i,
75-
_ => return,
72+
let Ok(Some(i)) = ty::Instance::resolve(cx.tcx, param_env, did, substs) else {
73+
return
7674
};
7775
// (Re)check that it implements the noop diagnostic.
7876
let Some(name) = cx.tcx.get_diagnostic_name(i.def_id()) else { return };

compiler/rustc_lint/src/traits.rs

+8-12
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ impl<'tcx> LateLintPass<'tcx> for DropTraitConstraints {
9191

9292
let predicates = cx.tcx.explicit_predicates_of(item.def_id);
9393
for &(predicate, span) in predicates.predicates {
94-
let trait_predicate = match predicate.kind().skip_binder() {
95-
Trait(trait_predicate) => trait_predicate,
96-
_ => continue,
94+
let Trait(trait_predicate) = predicate.kind().skip_binder() else {
95+
continue
9796
};
9897
if trait_predicate.constness == ty::BoundConstness::ConstIfConst {
9998
// `~const Drop` definitely have meanings so avoid linting here.
@@ -106,9 +105,8 @@ impl<'tcx> LateLintPass<'tcx> for DropTraitConstraints {
106105
continue;
107106
}
108107
cx.struct_span_lint(DROP_BOUNDS, span, |lint| {
109-
let needs_drop = match cx.tcx.get_diagnostic_item(sym::needs_drop) {
110-
Some(needs_drop) => needs_drop,
111-
None => return,
108+
let Some(needs_drop) = cx.tcx.get_diagnostic_item(sym::needs_drop) else {
109+
return
112110
};
113111
let msg = format!(
114112
"bounds on `{}` are most likely incorrect, consider instead \
@@ -123,17 +121,15 @@ impl<'tcx> LateLintPass<'tcx> for DropTraitConstraints {
123121
}
124122

125123
fn check_ty(&mut self, cx: &LateContext<'_>, ty: &'tcx hir::Ty<'tcx>) {
126-
let bounds = match &ty.kind {
127-
hir::TyKind::TraitObject(bounds, _lifetime, _syntax) => bounds,
128-
_ => return,
124+
let hir::TyKind::TraitObject(bounds, _lifetime, _syntax) = &ty.kind else {
125+
return
129126
};
130127
for bound in &bounds[..] {
131128
let def_id = bound.trait_ref.trait_def_id();
132129
if cx.tcx.lang_items().drop_trait() == def_id {
133130
cx.struct_span_lint(DYN_DROP, bound.span, |lint| {
134-
let needs_drop = match cx.tcx.get_diagnostic_item(sym::needs_drop) {
135-
Some(needs_drop) => needs_drop,
136-
None => return,
131+
let Some(needs_drop) = cx.tcx.get_diagnostic_item(sym::needs_drop) else {
132+
return
137133
};
138134
let msg = format!(
139135
"types that do not implement `Drop` can still have drop glue, consider \

compiler/rustc_lint/src/types.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1342,11 +1342,10 @@ impl<'tcx> LateLintPass<'tcx> for VariantSizeDifferences {
13421342
| ty::layout::LayoutError::NormalizationFailure(_, _),
13431343
) => return,
13441344
};
1345-
let (variants, tag) = match layout.variants {
1346-
Variants::Multiple {
1345+
let Variants::Multiple {
13471346
tag_encoding: TagEncoding::Direct, tag, ref variants, ..
1348-
} => (variants, tag),
1349-
_ => return,
1347+
} = &layout.variants else {
1348+
return
13501349
};
13511350

13521351
let tag_size = tag.value.size(&cx.tcx).bytes();

0 commit comments

Comments
 (0)