Skip to content

Commit 7784b9f

Browse files
committed
Move two attribute lints to be early pass (post expansion)
1 parent ca87b53 commit 7784b9f

File tree

7 files changed

+46
-32
lines changed

7 files changed

+46
-32
lines changed

src/tools/clippy/clippy_lints/src/attrs/allow_attributes.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ use clippy_utils::diagnostics::span_lint_and_then;
33
use clippy_utils::is_from_proc_macro;
44
use rustc_ast::{AttrStyle, Attribute};
55
use rustc_errors::Applicability;
6-
use rustc_lint::{LateContext, LintContext};
6+
use rustc_lint::{EarlyContext, LintContext};
77
use rustc_middle::lint::in_external_macro;
88

99
// Separate each crate's features.
10-
pub fn check<'cx>(cx: &LateContext<'cx>, attr: &'cx Attribute) {
10+
pub fn check<'cx>(cx: &EarlyContext<'cx>, attr: &'cx Attribute) {
1111
if !in_external_macro(cx.sess(), attr.span)
1212
&& let AttrStyle::Outer = attr.style
1313
&& let Some(ident) = attr.ident()

src/tools/clippy/clippy_lints/src/attrs/allow_attributes_without_reason.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ use super::{ALLOW_ATTRIBUTES_WITHOUT_REASON, Attribute};
22
use clippy_utils::diagnostics::span_lint_and_then;
33
use clippy_utils::is_from_proc_macro;
44
use rustc_ast::{MetaItemInner, MetaItemKind};
5-
use rustc_lint::{LateContext, LintContext};
5+
use rustc_lint::{EarlyContext, LintContext};
66
use rustc_middle::lint::in_external_macro;
77
use rustc_span::sym;
88
use rustc_span::symbol::Symbol;
99

10-
pub(super) fn check<'cx>(cx: &LateContext<'cx>, name: Symbol, items: &[MetaItemInner], attr: &'cx Attribute) {
10+
pub(super) fn check<'cx>(cx: &EarlyContext<'cx>, name: Symbol, items: &[MetaItemInner], attr: &'cx Attribute) {
1111
// Check if the reason is present
1212
if let Some(item) = items.last().and_then(MetaItemInner::meta_item)
1313
&& let MetaItemKind::NameValue(_) = &item.kind

src/tools/clippy/clippy_lints/src/attrs/mod.rs

+35-7
Original file line numberDiff line numberDiff line change
@@ -445,13 +445,6 @@ impl<'tcx> LateLintPass<'tcx> for Attributes {
445445
if is_lint_level(ident.name, attr.id) {
446446
blanket_clippy_restriction_lints::check(cx, ident.name, items);
447447
}
448-
if matches!(ident.name, sym::allow) && self.msrv.meets(msrvs::LINT_REASONS_STABILIZATION) {
449-
allow_attributes::check(cx, attr);
450-
}
451-
if matches!(ident.name, sym::allow | sym::expect) && self.msrv.meets(msrvs::LINT_REASONS_STABILIZATION)
452-
{
453-
allow_attributes_without_reason::check(cx, ident.name, items, attr);
454-
}
455448
if items.is_empty() || !attr.has_name(sym::deprecated) {
456449
return;
457450
}
@@ -526,3 +519,38 @@ impl EarlyLintPass for EarlyAttributes {
526519

527520
extract_msrv_attr!(EarlyContext);
528521
}
522+
523+
pub struct PostExpansionEarlyAttributes {
524+
msrv: Msrv,
525+
}
526+
527+
impl PostExpansionEarlyAttributes {
528+
pub fn new(conf: &'static Conf) -> Self {
529+
Self {
530+
msrv: conf.msrv.clone(),
531+
}
532+
}
533+
}
534+
535+
impl_lint_pass!(PostExpansionEarlyAttributes => [
536+
ALLOW_ATTRIBUTES,
537+
ALLOW_ATTRIBUTES_WITHOUT_REASON,
538+
]);
539+
540+
impl EarlyLintPass for PostExpansionEarlyAttributes {
541+
fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &Attribute) {
542+
if let Some(items) = &attr.meta_item_list() {
543+
if let Some(ident) = attr.ident() {
544+
if matches!(ident.name, sym::allow) && self.msrv.meets(msrvs::LINT_REASONS_STABILIZATION) {
545+
allow_attributes::check(cx, attr);
546+
}
547+
if matches!(ident.name, sym::allow | sym::expect) && self.msrv.meets(msrvs::LINT_REASONS_STABILIZATION)
548+
{
549+
allow_attributes_without_reason::check(cx, ident.name, items, attr);
550+
}
551+
}
552+
}
553+
}
554+
555+
extract_msrv_attr!(EarlyContext);
556+
}

src/tools/clippy/clippy_lints/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,8 @@ use rustc_lint::{Lint, LintId};
412412
pub fn register_pre_expansion_lints(store: &mut rustc_lint::LintStore, conf: &'static Conf) {
413413
// NOTE: Do not add any more pre-expansion passes. These should be removed eventually.
414414
store.register_pre_expansion_pass(move || Box::new(attrs::EarlyAttributes::new(conf)));
415+
416+
store.register_early_pass(move || Box::new(attrs::PostExpansionEarlyAttributes::new(conf)));
415417
}
416418

417419
#[derive(Default)]

src/tools/clippy/clippy_utils/src/check_proc_macro.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use rustc_hir::{
2121
ImplItem, ImplItemKind, IsAuto, Item, ItemKind, Lit, LoopSource, MatchSource, MutTy, Node, Path, QPath, Safety,
2222
TraitItem, TraitItemKind, Ty, TyKind, UnOp, UnsafeSource, Variant, VariantData, YieldSource,
2323
};
24-
use rustc_lint::{LateContext, LintContext};
24+
use rustc_lint::{LateContext, LintContext, EarlyContext};
2525
use rustc_middle::ty::TyCtxt;
2626
use rustc_session::Session;
2727
use rustc_span::symbol::{Ident, kw};
@@ -429,11 +429,12 @@ impl_with_search_pat!((_cx: LateContext<'tcx>, self: ImplItem<'_>) => impl_item_
429429
impl_with_search_pat!((_cx: LateContext<'tcx>, self: FieldDef<'_>) => field_def_search_pat(self));
430430
impl_with_search_pat!((_cx: LateContext<'tcx>, self: Variant<'_>) => variant_search_pat(self));
431431
impl_with_search_pat!((_cx: LateContext<'tcx>, self: Ty<'_>) => ty_search_pat(self));
432-
impl_with_search_pat!((_cx: LateContext<'tcx>, self: Attribute) => attr_search_pat(self));
433432
impl_with_search_pat!((_cx: LateContext<'tcx>, self: Ident) => ident_search_pat(*self));
434433
impl_with_search_pat!((_cx: LateContext<'tcx>, self: Lit) => lit_search_pat(&self.node));
435434
impl_with_search_pat!((_cx: LateContext<'tcx>, self: Path<'_>) => path_search_pat(self));
436435

436+
impl_with_search_pat!((_cx: EarlyContext<'tcx>, self: Attribute) => attr_search_pat(self));
437+
437438
impl<'cx> WithSearchPat<'cx> for (&FnKind<'cx>, &Body<'cx>, HirId, Span) {
438439
type Context = LateContext<'cx>;
439440

src/tools/clippy/tests/ui/allow_attributes.stderr

+1-9
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,5 @@ error: #[allow] attribute found
1919
LL | #[allow(unused)]
2020
| ^^^^^ help: replace it with: `expect`
2121

22-
error: #[allow] attribute found
23-
--> tests/ui/allow_attributes.rs:52:7
24-
|
25-
LL | #[allow(unused)]
26-
| ^^^^^ help: replace it with: `expect`
27-
|
28-
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
29-
30-
error: aborting due to 4 previous errors
22+
error: aborting due to 3 previous errors
3123

src/tools/clippy/tests/ui/allow_attributes_without_reason.stderr

+1-10
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,5 @@ LL | #[allow(unused)]
4343
|
4444
= help: try adding a reason at the end with `, reason = ".."`
4545

46-
error: `allow` attribute without specifying a reason
47-
--> tests/ui/allow_attributes_without_reason.rs:46:5
48-
|
49-
LL | #[allow(unused)]
50-
| ^^^^^^^^^^^^^^^^
51-
|
52-
= help: try adding a reason at the end with `, reason = ".."`
53-
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
54-
55-
error: aborting due to 6 previous errors
46+
error: aborting due to 5 previous errors
5647

0 commit comments

Comments
 (0)