Skip to content

Commit 7810652

Browse files
committed
Auto merge of #4417 - kraai:remove-in_macro_or_desugar, r=phansch
Remove in_macro_or_desugar `in_macro_or_desugar` is just a wrapper around `Span::from_expansion`, so remove the former and call the latter instead. changelog: Remove `in_macro_or_desugar`.
2 parents 918d609 + eaf8f08 commit 7810652

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+127
-146
lines changed

clippy_lints/src/assertions_on_constants.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
33
use rustc::{declare_lint_pass, declare_tool_lint};
44

55
use crate::consts::{constant, Constant};
6-
use crate::utils::{in_macro_or_desugar, is_direct_expn_of, is_expn_of, span_help_and_lint};
6+
use crate::utils::{is_direct_expn_of, is_expn_of, span_help_and_lint};
77

88
declare_clippy_lint! {
99
/// **What it does:** Checks for `assert!(true)` and `assert!(false)` calls.
@@ -55,12 +55,12 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AssertionsOnConstants {
5555
}
5656
};
5757
if let Some(debug_assert_span) = is_expn_of(e.span, "debug_assert") {
58-
if in_macro_or_desugar(debug_assert_span) {
58+
if debug_assert_span.from_expansion() {
5959
return;
6060
}
6161
lint_assert_cb(true);
6262
} else if let Some(assert_span) = is_direct_expn_of(e.span, "assert") {
63-
if in_macro_or_desugar(assert_span) {
63+
if assert_span.from_expansion() {
6464
return;
6565
}
6666
lint_assert_cb(false);

clippy_lints/src/attrs.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
33
use crate::reexport::*;
44
use crate::utils::{
5-
in_macro_or_desugar, is_present_in_source, last_line_of_span, match_def_path, paths, snippet_opt, span_lint,
6-
span_lint_and_sugg, span_lint_and_then, without_block_comments,
5+
is_present_in_source, last_line_of_span, match_def_path, paths, snippet_opt, span_lint, span_lint_and_sugg,
6+
span_lint_and_then, without_block_comments,
77
};
88
use if_chain::if_chain;
99
use rustc::hir::*;
@@ -412,7 +412,7 @@ fn is_relevant_expr(cx: &LateContext<'_, '_>, tables: &ty::TypeckTables<'_>, exp
412412
}
413413

414414
fn check_attrs(cx: &LateContext<'_, '_>, span: Span, name: Name, attrs: &[Attribute]) {
415-
if in_macro_or_desugar(span) {
415+
if span.from_expansion() {
416416
return;
417417
}
418418

clippy_lints/src/block_in_if_condition.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ impl<'a, 'tcx> Visitor<'tcx> for ExVisitor<'a, 'tcx> {
5454
if let ExprKind::Closure(_, _, eid, _, _) = expr.node {
5555
let body = self.cx.tcx.hir().body(eid);
5656
let ex = &body.value;
57-
if matches!(ex.node, ExprKind::Block(_, _)) && !in_macro_or_desugar(body.value.span) {
57+
if matches!(ex.node, ExprKind::Block(_, _)) && !body.value.span.from_expansion() {
5858
self.found_block = Some(ex);
5959
return;
6060
}
@@ -79,7 +79,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BlockInIfCondition {
7979
if let Some(ex) = &block.expr {
8080
// don't dig into the expression here, just suggest that they remove
8181
// the block
82-
if in_macro_or_desugar(expr.span) || differing_macro_contexts(expr.span, ex.span) {
82+
if expr.span.from_expansion() || differing_macro_contexts(expr.span, ex.span) {
8383
return;
8484
}
8585
span_help_and_lint(
@@ -96,7 +96,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BlockInIfCondition {
9696
}
9797
} else {
9898
let span = block.expr.as_ref().map_or_else(|| block.stmts[0].span, |e| e.span);
99-
if in_macro_or_desugar(span) || differing_macro_contexts(expr.span, span) {
99+
if span.from_expansion() || differing_macro_contexts(expr.span, span) {
100100
return;
101101
}
102102
// move block higher

clippy_lints/src/booleans.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use crate::utils::{
2-
get_trait_def_id, implements_trait, in_macro, in_macro_or_desugar, match_type, paths, snippet_opt,
3-
span_lint_and_then, SpanlessEq,
2+
get_trait_def_id, implements_trait, in_macro, match_type, paths, snippet_opt, span_lint_and_then, SpanlessEq,
43
};
54
use if_chain::if_chain;
65
use rustc::hir::intravisit::*;
@@ -106,7 +105,7 @@ impl<'a, 'tcx, 'v> Hir2Qmm<'a, 'tcx, 'v> {
106105
}
107106

108107
// prevent folding of `cfg!` macros and the like
109-
if !in_macro_or_desugar(e.span) {
108+
if !e.span.from_expansion() {
110109
match &e.node {
111110
ExprKind::Unary(UnNot, inner) => return Ok(Bool::Not(box self.run(inner)?)),
112111
ExprKind::Binary(binop, lhs, rhs) => match &binop.node {

clippy_lints/src/cognitive_complexity.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use rustc::{declare_tool_lint, impl_lint_pass};
99
use syntax::ast::Attribute;
1010
use syntax::source_map::Span;
1111

12-
use crate::utils::{in_macro_or_desugar, is_allowed, match_type, paths, span_help_and_lint, LimitStack};
12+
use crate::utils::{is_allowed, match_type, paths, span_help_and_lint, LimitStack};
1313

1414
declare_clippy_lint! {
1515
/// **What it does:** Checks for methods with high cognitive complexity.
@@ -42,7 +42,7 @@ impl_lint_pass!(CognitiveComplexity => [COGNITIVE_COMPLEXITY]);
4242

4343
impl CognitiveComplexity {
4444
fn check<'a, 'tcx>(&mut self, cx: &'a LateContext<'a, 'tcx>, body: &'tcx Body, span: Span) {
45-
if in_macro_or_desugar(span) {
45+
if span.from_expansion() {
4646
return;
4747
}
4848

clippy_lints/src/collapsible_if.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ use rustc::{declare_lint_pass, declare_tool_lint};
1818
use syntax::ast;
1919

2020
use crate::utils::sugg::Sugg;
21-
use crate::utils::{
22-
in_macro_or_desugar, snippet_block, snippet_block_with_applicability, span_lint_and_sugg, span_lint_and_then,
23-
};
21+
use crate::utils::{snippet_block, snippet_block_with_applicability, span_lint_and_sugg, span_lint_and_then};
2422
use rustc_errors::Applicability;
2523

2624
declare_clippy_lint! {
@@ -77,7 +75,7 @@ declare_lint_pass!(CollapsibleIf => [COLLAPSIBLE_IF]);
7775

7876
impl EarlyLintPass for CollapsibleIf {
7977
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
80-
if !in_macro_or_desugar(expr.span) {
78+
if !expr.span.from_expansion() {
8179
check_if(cx, expr)
8280
}
8381
}
@@ -108,7 +106,7 @@ fn check_collapsible_maybe_if_let(cx: &EarlyContext<'_>, else_: &ast::Expr) {
108106
if let ast::ExprKind::Block(ref block, _) = else_.node;
109107
if !block_starts_with_comment(cx, block);
110108
if let Some(else_) = expr_block(block);
111-
if !in_macro_or_desugar(else_.span);
109+
if !else_.span.from_expansion();
112110
if let ast::ExprKind::If(..) = else_.node;
113111
then {
114112
let mut applicability = Applicability::MachineApplicable;

clippy_lints/src/copies.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use crate::utils::{
2-
get_parent_expr, higher, in_macro_or_desugar, same_tys, snippet, span_lint_and_then, span_note_and_lint,
3-
};
1+
use crate::utils::{get_parent_expr, higher, same_tys, snippet, span_lint_and_then, span_note_and_lint};
42
use crate::utils::{SpanlessEq, SpanlessHash};
53
use rustc::hir::*;
64
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
@@ -109,7 +107,7 @@ declare_lint_pass!(CopyAndPaste => [IFS_SAME_COND, IF_SAME_THEN_ELSE, MATCH_SAME
109107

110108
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CopyAndPaste {
111109
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
112-
if !in_macro_or_desugar(expr.span) {
110+
if !expr.span.from_expansion() {
113111
// skip ifs directly in else, it will be checked in the parent if
114112
if let Some(expr) = get_parent_expr(cx, expr) {
115113
if let Some((_, _, Some(ref else_expr))) = higher::if_block(&expr) {

clippy_lints/src/double_parens.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::utils::{in_macro_or_desugar, span_lint};
1+
use crate::utils::span_lint;
22
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
33
use rustc::{declare_lint_pass, declare_tool_lint};
44
use syntax::ast::*;
@@ -27,7 +27,7 @@ declare_lint_pass!(DoubleParens => [DOUBLE_PARENS]);
2727

2828
impl EarlyLintPass for DoubleParens {
2929
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
30-
if in_macro_or_desugar(expr.span) {
30+
if expr.span.from_expansion() {
3131
return;
3232
}
3333

clippy_lints/src/enum_variants.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! lint on enum variants that are prefixed or suffixed by the same characters
22
3-
use crate::utils::{camel_case, in_macro_or_desugar, is_present_in_source};
3+
use crate::utils::{camel_case, is_present_in_source};
44
use crate::utils::{span_help_and_lint, span_lint};
55
use rustc::lint::{EarlyContext, EarlyLintPass, Lint, LintArray, LintPass};
66
use rustc::{declare_tool_lint, impl_lint_pass};
@@ -248,7 +248,7 @@ impl EarlyLintPass for EnumVariantNames {
248248
let item_name = item.ident.as_str();
249249
let item_name_chars = item_name.chars().count();
250250
let item_camel = to_camel_case(&item_name);
251-
if !in_macro_or_desugar(item.span) && is_present_in_source(cx, item.span) {
251+
if !item.span.from_expansion() && is_present_in_source(cx, item.span) {
252252
if let Some(&(ref mod_name, ref mod_camel)) = self.modules.last() {
253253
// constants don't have surrounding modules
254254
if !mod_camel.is_empty() {

clippy_lints/src/eq_op.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use crate::utils::{
2-
implements_trait, in_macro_or_desugar, is_copy, multispan_sugg, snippet, span_lint, span_lint_and_then, SpanlessEq,
3-
};
1+
use crate::utils::{implements_trait, is_copy, multispan_sugg, snippet, span_lint, span_lint_and_then, SpanlessEq};
42
use rustc::hir::*;
53
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
64
use rustc::{declare_lint_pass, declare_tool_lint};
@@ -52,7 +50,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EqOp {
5250
#[allow(clippy::similar_names, clippy::too_many_lines)]
5351
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
5452
if let ExprKind::Binary(op, ref left, ref right) = e.node {
55-
if in_macro_or_desugar(e.span) {
53+
if e.span.from_expansion() {
5654
return;
5755
}
5856
if is_valid_operator(op) && SpanlessEq::new(cx).ignore_fn().eq_expr(left, right) {

clippy_lints/src/erasing_op.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use rustc::{declare_lint_pass, declare_tool_lint};
44
use syntax::source_map::Span;
55

66
use crate::consts::{constant_simple, Constant};
7-
use crate::utils::{in_macro_or_desugar, span_lint};
7+
use crate::utils::span_lint;
88

99
declare_clippy_lint! {
1010
/// **What it does:** Checks for erasing operations, e.g., `x * 0`.
@@ -31,7 +31,7 @@ declare_lint_pass!(ErasingOp => [ERASING_OP]);
3131

3232
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ErasingOp {
3333
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
34-
if in_macro_or_desugar(e.span) {
34+
if e.span.from_expansion() {
3535
return;
3636
}
3737
if let ExprKind::Binary(ref cmp, ref left, ref right) = e.node {

clippy_lints/src/format.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use crate::utils::paths;
22
use crate::utils::{
3-
in_macro_or_desugar, is_expn_of, last_path_segment, match_def_path, match_type, resolve_node, snippet,
4-
span_lint_and_then, walk_ptrs_ty,
3+
is_expn_of, last_path_segment, match_def_path, match_type, resolve_node, snippet, span_lint_and_then, walk_ptrs_ty,
54
};
65
use if_chain::if_chain;
76
use rustc::hir::*;
@@ -40,7 +39,7 @@ declare_lint_pass!(UselessFormat => [USELESS_FORMAT]);
4039
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UselessFormat {
4140
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
4241
if let Some(span) = is_expn_of(expr.span, "format") {
43-
if in_macro_or_desugar(span) {
42+
if span.from_expansion() {
4443
return;
4544
}
4645
match expr.node {

clippy_lints/src/formatting.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::utils::{differing_macro_contexts, in_macro_or_desugar, snippet_opt, span_note_and_lint};
1+
use crate::utils::{differing_macro_contexts, snippet_opt, span_note_and_lint};
22
use if_chain::if_chain;
33
use rustc::lint::{in_external_macro, EarlyContext, EarlyLintPass, LintArray, LintPass};
44
use rustc::{declare_lint_pass, declare_tool_lint};
@@ -107,7 +107,7 @@ impl EarlyLintPass for Formatting {
107107
/// Implementation of the `SUSPICIOUS_ASSIGNMENT_FORMATTING` lint.
108108
fn check_assign(cx: &EarlyContext<'_>, expr: &Expr) {
109109
if let ExprKind::Assign(ref lhs, ref rhs) = expr.node {
110-
if !differing_macro_contexts(lhs.span, rhs.span) && !in_macro_or_desugar(lhs.span) {
110+
if !differing_macro_contexts(lhs.span, rhs.span) && !lhs.span.from_expansion() {
111111
let eq_span = lhs.span.between(rhs.span);
112112
if let ExprKind::Unary(op, ref sub_rhs) = rhs.node {
113113
if let Some(eq_snippet) = snippet_opt(cx, eq_span) {
@@ -139,7 +139,7 @@ fn check_else(cx: &EarlyContext<'_>, expr: &Expr) {
139139
if let ExprKind::If(_, then, Some(else_)) = &expr.node;
140140
if is_block(else_) || is_if(else_);
141141
if !differing_macro_contexts(then.span, else_.span);
142-
if !in_macro_or_desugar(then.span) && !in_external_macro(cx.sess, expr.span);
142+
if !then.span.from_expansion() && !in_external_macro(cx.sess, expr.span);
143143

144144
// workaround for rust-lang/rust#43081
145145
if expr.span.lo().0 != 0 && expr.span.hi().0 != 0;
@@ -205,7 +205,7 @@ fn check_array(cx: &EarlyContext<'_>, expr: &Expr) {
205205

206206
fn check_missing_else(cx: &EarlyContext<'_>, first: &Expr, second: &Expr) {
207207
if !differing_macro_contexts(first.span, second.span)
208-
&& !in_macro_or_desugar(first.span)
208+
&& !first.span.from_expansion()
209209
&& is_if(first)
210210
&& (is_block(second) || is_if(second))
211211
{

clippy_lints/src/identity_conversion.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use crate::utils::{
2-
in_macro_or_desugar, match_def_path, match_trait_method, same_tys, snippet, snippet_with_macro_callsite,
3-
span_lint_and_then,
2+
match_def_path, match_trait_method, same_tys, snippet, snippet_with_macro_callsite, span_lint_and_then,
43
};
54
use crate::utils::{paths, resolve_node};
65
use rustc::hir::*;
@@ -34,7 +33,7 @@ impl_lint_pass!(IdentityConversion => [IDENTITY_CONVERSION]);
3433

3534
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for IdentityConversion {
3635
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
37-
if in_macro_or_desugar(e.span) {
36+
if e.span.from_expansion() {
3837
return;
3938
}
4039

clippy_lints/src/identity_op.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use rustc::{declare_lint_pass, declare_tool_lint};
55
use syntax::source_map::Span;
66

77
use crate::consts::{constant_simple, Constant};
8-
use crate::utils::{clip, in_macro_or_desugar, snippet, span_lint, unsext};
8+
use crate::utils::{clip, snippet, span_lint, unsext};
99

1010
declare_clippy_lint! {
1111
/// **What it does:** Checks for identity operations, e.g., `x + 0`.
@@ -29,7 +29,7 @@ declare_lint_pass!(IdentityOp => [IDENTITY_OP]);
2929

3030
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for IdentityOp {
3131
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
32-
if in_macro_or_desugar(e.span) {
32+
if e.span.from_expansion() {
3333
return;
3434
}
3535
if let ExprKind::Binary(ref cmp, ref left, ref right) = e.node {

clippy_lints/src/implicit_return.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::utils::{
2-
in_macro_or_desugar, match_def_path,
2+
match_def_path,
33
paths::{BEGIN_PANIC, BEGIN_PANIC_FMT},
44
resolve_node, snippet_opt, span_lint_and_then,
55
};
@@ -138,7 +138,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ImplicitReturn {
138138

139139
// checking return type through MIR, HIR is not able to determine inferred closure return types
140140
// make sure it's not a macro
141-
if !mir.return_ty().is_unit() && !in_macro_or_desugar(span) {
141+
if !mir.return_ty().is_unit() && !span.from_expansion() {
142142
expr_match(cx, &body.value);
143143
}
144144
}

clippy_lints/src/inherent_to_string.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
44
use rustc::{declare_lint_pass, declare_tool_lint};
55

66
use crate::utils::{
7-
get_trait_def_id, implements_trait, in_macro_or_desugar, match_type, paths, return_ty, span_help_and_lint,
8-
trait_ref_of_method, walk_ptrs_ty,
7+
get_trait_def_id, implements_trait, match_type, paths, return_ty, span_help_and_lint, trait_ref_of_method,
8+
walk_ptrs_ty,
99
};
1010

1111
declare_clippy_lint! {
@@ -94,7 +94,7 @@ declare_lint_pass!(InherentToString => [INHERENT_TO_STRING, INHERENT_TO_STRING_S
9494

9595
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InherentToString {
9696
fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, impl_item: &'tcx ImplItem) {
97-
if in_macro_or_desugar(impl_item.span) {
97+
if impl_item.span.from_expansion() {
9898
return;
9999
}
100100

clippy_lints/src/items_after_statements.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! lint when items are used after statements
22
3-
use crate::utils::{in_macro_or_desugar, span_lint};
3+
use crate::utils::span_lint;
44
use matches::matches;
55
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
66
use rustc::{declare_lint_pass, declare_tool_lint};
@@ -38,7 +38,7 @@ declare_lint_pass!(ItemsAfterStatements => [ITEMS_AFTER_STATEMENTS]);
3838

3939
impl EarlyLintPass for ItemsAfterStatements {
4040
fn check_block(&mut self, cx: &EarlyContext<'_>, item: &Block) {
41-
if in_macro_or_desugar(item.span) {
41+
if item.span.from_expansion() {
4242
return;
4343
}
4444

@@ -52,7 +52,7 @@ impl EarlyLintPass for ItemsAfterStatements {
5252
// lint on all further items
5353
for stmt in stmts {
5454
if let StmtKind::Item(ref it) = *stmt {
55-
if in_macro_or_desugar(it.span) {
55+
if it.span.from_expansion() {
5656
return;
5757
}
5858
if let ItemKind::MacroDef(..) = it.node {

clippy_lints/src/len_zero.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
use crate::utils::{
2-
get_item_name, in_macro_or_desugar, snippet_with_applicability, span_lint, span_lint_and_sugg, walk_ptrs_ty,
3-
};
1+
use crate::utils::{get_item_name, snippet_with_applicability, span_lint, span_lint_and_sugg, walk_ptrs_ty};
42
use rustc::hir::def_id::DefId;
53
use rustc::hir::*;
64
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
@@ -75,7 +73,7 @@ declare_lint_pass!(LenZero => [LEN_ZERO, LEN_WITHOUT_IS_EMPTY]);
7573

7674
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LenZero {
7775
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
78-
if in_macro_or_desugar(item.span) {
76+
if item.span.from_expansion() {
7977
return;
8078
}
8179

@@ -87,7 +85,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LenZero {
8785
}
8886

8987
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
90-
if in_macro_or_desugar(expr.span) {
88+
if expr.span.from_expansion() {
9189
return;
9290
}
9391

0 commit comments

Comments
 (0)