|
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}; |
2 | 2 | use if_chain::if_chain;
|
3 | 3 | use rustc::lint::{in_external_macro, EarlyContext, EarlyLintPass, LintArray, LintPass};
|
4 | 4 | use rustc::{declare_lint_pass, declare_tool_lint};
|
@@ -107,7 +107,7 @@ impl EarlyLintPass for Formatting {
|
107 | 107 | /// Implementation of the `SUSPICIOUS_ASSIGNMENT_FORMATTING` lint.
|
108 | 108 | fn check_assign(cx: &EarlyContext<'_>, expr: &Expr) {
|
109 | 109 | 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() { |
111 | 111 | let eq_span = lhs.span.between(rhs.span);
|
112 | 112 | if let ExprKind::Unary(op, ref sub_rhs) = rhs.node {
|
113 | 113 | if let Some(eq_snippet) = snippet_opt(cx, eq_span) {
|
@@ -139,7 +139,7 @@ fn check_else(cx: &EarlyContext<'_>, expr: &Expr) {
|
139 | 139 | if let ExprKind::If(_, then, Some(else_)) = &expr.node;
|
140 | 140 | if is_block(else_) || is_if(else_);
|
141 | 141 | 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); |
143 | 143 |
|
144 | 144 | // workaround for rust-lang/rust#43081
|
145 | 145 | if expr.span.lo().0 != 0 && expr.span.hi().0 != 0;
|
@@ -205,7 +205,7 @@ fn check_array(cx: &EarlyContext<'_>, expr: &Expr) {
|
205 | 205 |
|
206 | 206 | fn check_missing_else(cx: &EarlyContext<'_>, first: &Expr, second: &Expr) {
|
207 | 207 | if !differing_macro_contexts(first.span, second.span)
|
208 |
| - && !in_macro_or_desugar(first.span) |
| 208 | + && !first.span.from_expansion() |
209 | 209 | && is_if(first)
|
210 | 210 | && (is_block(second) || is_if(second))
|
211 | 211 | {
|
|
0 commit comments