]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/utils/sugg.rs
Auto merge of #3645 - phansch:remove_copyright_headers, r=oli-obk
[rust.git] / clippy_lints / src / utils / sugg.rs
1 //! Contains utility functions to generate suggestions.
2 #![deny(clippy::missing_docs_in_private_items)]
3
4 use crate::utils::{higher, in_macro, snippet, snippet_opt};
5 use matches::matches;
6 use rustc::hir;
7 use rustc::lint::{EarlyContext, LateContext, LintContext};
8 use rustc_errors;
9 use rustc_errors::Applicability;
10 use std;
11 use std::borrow::Cow;
12 use std::convert::TryInto;
13 use std::fmt::Display;
14 use syntax::ast;
15 use syntax::parse::token;
16 use syntax::print::pprust::token_to_string;
17 use syntax::source_map::{CharPos, Span};
18 use syntax::util::parser::AssocOp;
19 use syntax_pos::{BytePos, Pos};
20
21 /// A helper type to build suggestion correctly handling parenthesis.
22 pub enum Sugg<'a> {
23     /// An expression that never needs parenthesis such as `1337` or `[0; 42]`.
24     NonParen(Cow<'a, str>),
25     /// An expression that does not fit in other variants.
26     MaybeParen(Cow<'a, str>),
27     /// A binary operator expression, including `as`-casts and explicit type
28     /// coercion.
29     BinOp(AssocOp, Cow<'a, str>),
30 }
31
32 /// Literal constant `1`, for convenience.
33 pub const ONE: Sugg<'static> = Sugg::NonParen(Cow::Borrowed("1"));
34
35 impl Display for Sugg<'_> {
36     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
37         match *self {
38             Sugg::NonParen(ref s) | Sugg::MaybeParen(ref s) | Sugg::BinOp(_, ref s) => s.fmt(f),
39         }
40     }
41 }
42
43 #[allow(clippy::wrong_self_convention)] // ok, because of the function `as_ty` method
44 impl<'a> Sugg<'a> {
45     /// Prepare a suggestion from an expression.
46     pub fn hir_opt(cx: &LateContext<'_, '_>, expr: &hir::Expr) -> Option<Self> {
47         snippet_opt(cx, expr.span).map(|snippet| {
48             let snippet = Cow::Owned(snippet);
49             match expr.node {
50                 hir::ExprKind::AddrOf(..)
51                 | hir::ExprKind::Box(..)
52                 | hir::ExprKind::Closure(.., _)
53                 | hir::ExprKind::If(..)
54                 | hir::ExprKind::Unary(..)
55                 | hir::ExprKind::Match(..) => Sugg::MaybeParen(snippet),
56                 hir::ExprKind::Continue(..)
57                 | hir::ExprKind::Yield(..)
58                 | hir::ExprKind::Array(..)
59                 | hir::ExprKind::Block(..)
60                 | hir::ExprKind::Break(..)
61                 | hir::ExprKind::Call(..)
62                 | hir::ExprKind::Field(..)
63                 | hir::ExprKind::Index(..)
64                 | hir::ExprKind::InlineAsm(..)
65                 | hir::ExprKind::Lit(..)
66                 | hir::ExprKind::Loop(..)
67                 | hir::ExprKind::MethodCall(..)
68                 | hir::ExprKind::Path(..)
69                 | hir::ExprKind::Repeat(..)
70                 | hir::ExprKind::Ret(..)
71                 | hir::ExprKind::Struct(..)
72                 | hir::ExprKind::Tup(..)
73                 | hir::ExprKind::While(..)
74                 | hir::ExprKind::Err => Sugg::NonParen(snippet),
75                 hir::ExprKind::Assign(..) => Sugg::BinOp(AssocOp::Assign, snippet),
76                 hir::ExprKind::AssignOp(op, ..) => Sugg::BinOp(hirbinop2assignop(op), snippet),
77                 hir::ExprKind::Binary(op, ..) => Sugg::BinOp(AssocOp::from_ast_binop(higher::binop(op.node)), snippet),
78                 hir::ExprKind::Cast(..) => Sugg::BinOp(AssocOp::As, snippet),
79                 hir::ExprKind::Type(..) => Sugg::BinOp(AssocOp::Colon, snippet),
80             }
81         })
82     }
83
84     /// Convenience function around `hir_opt` for suggestions with a default
85     /// text.
86     pub fn hir(cx: &LateContext<'_, '_>, expr: &hir::Expr, default: &'a str) -> Self {
87         Self::hir_opt(cx, expr).unwrap_or_else(|| Sugg::NonParen(Cow::Borrowed(default)))
88     }
89
90     /// Same as `hir`, but it adapts the applicability level by following rules:
91     ///
92     /// - Applicability level `Unspecified` will never be changed.
93     /// - If the span is inside a macro, change the applicability level to `MaybeIncorrect`.
94     /// - If the default value is used and the applicability level is `MachineApplicable`, change it
95     ///   to
96     /// `HasPlaceholders`
97     pub fn hir_with_applicability(
98         cx: &LateContext<'_, '_>,
99         expr: &hir::Expr,
100         default: &'a str,
101         applicability: &mut Applicability,
102     ) -> Self {
103         if *applicability != Applicability::Unspecified && in_macro(expr.span) {
104             *applicability = Applicability::MaybeIncorrect;
105         }
106         Self::hir_opt(cx, expr).unwrap_or_else(|| {
107             if *applicability == Applicability::MachineApplicable {
108                 *applicability = Applicability::HasPlaceholders;
109             }
110             Sugg::NonParen(Cow::Borrowed(default))
111         })
112     }
113
114     /// Prepare a suggestion from an expression.
115     pub fn ast(cx: &EarlyContext<'_>, expr: &ast::Expr, default: &'a str) -> Self {
116         use syntax::ast::RangeLimits;
117
118         let snippet = snippet(cx, expr.span, default);
119
120         match expr.node {
121             ast::ExprKind::AddrOf(..)
122             | ast::ExprKind::Box(..)
123             | ast::ExprKind::Closure(..)
124             | ast::ExprKind::If(..)
125             | ast::ExprKind::IfLet(..)
126             | ast::ExprKind::ObsoleteInPlace(..)
127             | ast::ExprKind::Unary(..)
128             | ast::ExprKind::Match(..) => Sugg::MaybeParen(snippet),
129             ast::ExprKind::Async(..)
130             | ast::ExprKind::Block(..)
131             | ast::ExprKind::Break(..)
132             | ast::ExprKind::Call(..)
133             | ast::ExprKind::Continue(..)
134             | ast::ExprKind::Yield(..)
135             | ast::ExprKind::Field(..)
136             | ast::ExprKind::ForLoop(..)
137             | ast::ExprKind::Index(..)
138             | ast::ExprKind::InlineAsm(..)
139             | ast::ExprKind::Lit(..)
140             | ast::ExprKind::Loop(..)
141             | ast::ExprKind::Mac(..)
142             | ast::ExprKind::MethodCall(..)
143             | ast::ExprKind::Paren(..)
144             | ast::ExprKind::Path(..)
145             | ast::ExprKind::Repeat(..)
146             | ast::ExprKind::Ret(..)
147             | ast::ExprKind::Struct(..)
148             | ast::ExprKind::Try(..)
149             | ast::ExprKind::TryBlock(..)
150             | ast::ExprKind::Tup(..)
151             | ast::ExprKind::Array(..)
152             | ast::ExprKind::While(..)
153             | ast::ExprKind::WhileLet(..)
154             | ast::ExprKind::Err => Sugg::NonParen(snippet),
155             ast::ExprKind::Range(.., RangeLimits::HalfOpen) => Sugg::BinOp(AssocOp::DotDot, snippet),
156             ast::ExprKind::Range(.., RangeLimits::Closed) => Sugg::BinOp(AssocOp::DotDotEq, snippet),
157             ast::ExprKind::Assign(..) => Sugg::BinOp(AssocOp::Assign, snippet),
158             ast::ExprKind::AssignOp(op, ..) => Sugg::BinOp(astbinop2assignop(op), snippet),
159             ast::ExprKind::Binary(op, ..) => Sugg::BinOp(AssocOp::from_ast_binop(op.node), snippet),
160             ast::ExprKind::Cast(..) => Sugg::BinOp(AssocOp::As, snippet),
161             ast::ExprKind::Type(..) => Sugg::BinOp(AssocOp::Colon, snippet),
162         }
163     }
164
165     /// Convenience method to create the `<lhs> && <rhs>` suggestion.
166     pub fn and(self, rhs: &Self) -> Sugg<'static> {
167         make_binop(ast::BinOpKind::And, &self, rhs)
168     }
169
170     /// Convenience method to create the `<lhs> & <rhs>` suggestion.
171     pub fn bit_and(self, rhs: &Self) -> Sugg<'static> {
172         make_binop(ast::BinOpKind::BitAnd, &self, rhs)
173     }
174
175     /// Convenience method to create the `<lhs> as <rhs>` suggestion.
176     pub fn as_ty<R: Display>(self, rhs: R) -> Sugg<'static> {
177         make_assoc(AssocOp::As, &self, &Sugg::NonParen(rhs.to_string().into()))
178     }
179
180     /// Convenience method to create the `&<expr>` suggestion.
181     pub fn addr(self) -> Sugg<'static> {
182         make_unop("&", self)
183     }
184
185     /// Convenience method to create the `&mut <expr>` suggestion.
186     pub fn mut_addr(self) -> Sugg<'static> {
187         make_unop("&mut ", self)
188     }
189
190     /// Convenience method to create the `*<expr>` suggestion.
191     pub fn deref(self) -> Sugg<'static> {
192         make_unop("*", self)
193     }
194
195     /// Convenience method to create the `&*<expr>` suggestion. Currently this
196     /// is needed because `sugg.deref().addr()` produces an unnecessary set of
197     /// parentheses around the deref.
198     pub fn addr_deref(self) -> Sugg<'static> {
199         make_unop("&*", self)
200     }
201
202     /// Convenience method to create the `&mut *<expr>` suggestion. Currently
203     /// this is needed because `sugg.deref().mut_addr()` produces an unnecessary
204     /// set of parentheses around the deref.
205     pub fn mut_addr_deref(self) -> Sugg<'static> {
206         make_unop("&mut *", self)
207     }
208
209     /// Convenience method to create the `<lhs>..<rhs>` or `<lhs>...<rhs>`
210     /// suggestion.
211     #[allow(dead_code)]
212     pub fn range(self, end: &Self, limit: ast::RangeLimits) -> Sugg<'static> {
213         match limit {
214             ast::RangeLimits::HalfOpen => make_assoc(AssocOp::DotDot, &self, end),
215             ast::RangeLimits::Closed => make_assoc(AssocOp::DotDotEq, &self, end),
216         }
217     }
218
219     /// Add parenthesis to any expression that might need them. Suitable to the
220     /// `self` argument of
221     /// a method call (eg. to build `bar.foo()` or `(1 + 2).foo()`).
222     pub fn maybe_par(self) -> Self {
223         match self {
224             Sugg::NonParen(..) => self,
225             // (x) and (x).y() both don't need additional parens
226             Sugg::MaybeParen(sugg) => {
227                 if sugg.starts_with('(') && sugg.ends_with(')') {
228                     Sugg::MaybeParen(sugg)
229                 } else {
230                     Sugg::NonParen(format!("({})", sugg).into())
231                 }
232             },
233             Sugg::BinOp(_, sugg) => Sugg::NonParen(format!("({})", sugg).into()),
234         }
235     }
236 }
237
238 impl<'a, 'b> std::ops::Add<Sugg<'b>> for Sugg<'a> {
239     type Output = Sugg<'static>;
240     fn add(self, rhs: Sugg<'b>) -> Sugg<'static> {
241         make_binop(ast::BinOpKind::Add, &self, &rhs)
242     }
243 }
244
245 impl<'a, 'b> std::ops::Sub<Sugg<'b>> for Sugg<'a> {
246     type Output = Sugg<'static>;
247     fn sub(self, rhs: Sugg<'b>) -> Sugg<'static> {
248         make_binop(ast::BinOpKind::Sub, &self, &rhs)
249     }
250 }
251
252 impl<'a> std::ops::Not for Sugg<'a> {
253     type Output = Sugg<'static>;
254     fn not(self) -> Sugg<'static> {
255         make_unop("!", self)
256     }
257 }
258
259 /// Helper type to display either `foo` or `(foo)`.
260 struct ParenHelper<T> {
261     /// Whether parenthesis are needed.
262     paren: bool,
263     /// The main thing to display.
264     wrapped: T,
265 }
266
267 impl<T> ParenHelper<T> {
268     /// Build a `ParenHelper`.
269     fn new(paren: bool, wrapped: T) -> Self {
270         Self { paren, wrapped }
271     }
272 }
273
274 impl<T: Display> Display for ParenHelper<T> {
275     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
276         if self.paren {
277             write!(f, "({})", self.wrapped)
278         } else {
279             self.wrapped.fmt(f)
280         }
281     }
282 }
283
284 /// Build the string for `<op><expr>` adding parenthesis when necessary.
285 ///
286 /// For convenience, the operator is taken as a string because all unary
287 /// operators have the same
288 /// precedence.
289 pub fn make_unop(op: &str, expr: Sugg<'_>) -> Sugg<'static> {
290     Sugg::MaybeParen(format!("{}{}", op, expr.maybe_par()).into())
291 }
292
293 /// Build the string for `<lhs> <op> <rhs>` adding parenthesis when necessary.
294 ///
295 /// Precedence of shift operator relative to other arithmetic operation is
296 /// often confusing so
297 /// parenthesis will always be added for a mix of these.
298 pub fn make_assoc(op: AssocOp, lhs: &Sugg<'_>, rhs: &Sugg<'_>) -> Sugg<'static> {
299     /// Whether the operator is a shift operator `<<` or `>>`.
300     fn is_shift(op: &AssocOp) -> bool {
301         matches!(*op, AssocOp::ShiftLeft | AssocOp::ShiftRight)
302     }
303
304     /// Whether the operator is a arithmetic operator (`+`, `-`, `*`, `/`, `%`).
305     fn is_arith(op: &AssocOp) -> bool {
306         matches!(
307             *op,
308             AssocOp::Add | AssocOp::Subtract | AssocOp::Multiply | AssocOp::Divide | AssocOp::Modulus
309         )
310     }
311
312     /// Whether the operator `op` needs parenthesis with the operator `other`
313     /// in the direction
314     /// `dir`.
315     fn needs_paren(op: &AssocOp, other: &AssocOp, dir: Associativity) -> bool {
316         other.precedence() < op.precedence()
317             || (other.precedence() == op.precedence()
318                 && ((op != other && associativity(op) != dir)
319                     || (op == other && associativity(op) != Associativity::Both)))
320             || is_shift(op) && is_arith(other)
321             || is_shift(other) && is_arith(op)
322     }
323
324     let lhs_paren = if let Sugg::BinOp(ref lop, _) = *lhs {
325         needs_paren(&op, lop, Associativity::Left)
326     } else {
327         false
328     };
329
330     let rhs_paren = if let Sugg::BinOp(ref rop, _) = *rhs {
331         needs_paren(&op, rop, Associativity::Right)
332     } else {
333         false
334     };
335
336     let lhs = ParenHelper::new(lhs_paren, lhs);
337     let rhs = ParenHelper::new(rhs_paren, rhs);
338     let sugg = match op {
339         AssocOp::Add
340         | AssocOp::BitAnd
341         | AssocOp::BitOr
342         | AssocOp::BitXor
343         | AssocOp::Divide
344         | AssocOp::Equal
345         | AssocOp::Greater
346         | AssocOp::GreaterEqual
347         | AssocOp::LAnd
348         | AssocOp::LOr
349         | AssocOp::Less
350         | AssocOp::LessEqual
351         | AssocOp::Modulus
352         | AssocOp::Multiply
353         | AssocOp::NotEqual
354         | AssocOp::ShiftLeft
355         | AssocOp::ShiftRight
356         | AssocOp::Subtract => format!(
357             "{} {} {}",
358             lhs,
359             op.to_ast_binop().expect("Those are AST ops").to_string(),
360             rhs
361         ),
362         AssocOp::Assign => format!("{} = {}", lhs, rhs),
363         AssocOp::ObsoleteInPlace => format!("in ({}) {}", lhs, rhs),
364         AssocOp::AssignOp(op) => format!("{} {}= {}", lhs, token_to_string(&token::BinOp(op)), rhs),
365         AssocOp::As => format!("{} as {}", lhs, rhs),
366         AssocOp::DotDot => format!("{}..{}", lhs, rhs),
367         AssocOp::DotDotEq => format!("{}..={}", lhs, rhs),
368         AssocOp::Colon => format!("{}: {}", lhs, rhs),
369     };
370
371     Sugg::BinOp(op, sugg.into())
372 }
373
374 /// Convenience wrapper around `make_assoc` and `AssocOp::from_ast_binop`.
375 pub fn make_binop(op: ast::BinOpKind, lhs: &Sugg<'_>, rhs: &Sugg<'_>) -> Sugg<'static> {
376     make_assoc(AssocOp::from_ast_binop(op), lhs, rhs)
377 }
378
379 #[derive(PartialEq, Eq, Clone, Copy)]
380 /// Operator associativity.
381 enum Associativity {
382     /// The operator is both left-associative and right-associative.
383     Both,
384     /// The operator is left-associative.
385     Left,
386     /// The operator is not associative.
387     None,
388     /// The operator is right-associative.
389     Right,
390 }
391
392 /// Return the associativity/fixity of an operator. The difference with
393 /// `AssocOp::fixity` is that
394 /// an operator can be both left and right associative (such as `+`:
395 /// `a + b + c == (a + b) + c == a + (b + c)`.
396 ///
397 /// Chained `as` and explicit `:` type coercion never need inner parenthesis so
398 /// they are considered
399 /// associative.
400 fn associativity(op: &AssocOp) -> Associativity {
401     use syntax::util::parser::AssocOp::*;
402
403     match *op {
404         ObsoleteInPlace | Assign | AssignOp(_) => Associativity::Right,
405         Add | BitAnd | BitOr | BitXor | LAnd | LOr | Multiply | As | Colon => Associativity::Both,
406         Divide | Equal | Greater | GreaterEqual | Less | LessEqual | Modulus | NotEqual | ShiftLeft | ShiftRight
407         | Subtract => Associativity::Left,
408         DotDot | DotDotEq => Associativity::None,
409     }
410 }
411
412 /// Convert a `hir::BinOp` to the corresponding assigning binary operator.
413 fn hirbinop2assignop(op: hir::BinOp) -> AssocOp {
414     use syntax::parse::token::BinOpToken::*;
415
416     AssocOp::AssignOp(match op.node {
417         hir::BinOpKind::Add => Plus,
418         hir::BinOpKind::BitAnd => And,
419         hir::BinOpKind::BitOr => Or,
420         hir::BinOpKind::BitXor => Caret,
421         hir::BinOpKind::Div => Slash,
422         hir::BinOpKind::Mul => Star,
423         hir::BinOpKind::Rem => Percent,
424         hir::BinOpKind::Shl => Shl,
425         hir::BinOpKind::Shr => Shr,
426         hir::BinOpKind::Sub => Minus,
427
428         hir::BinOpKind::And
429         | hir::BinOpKind::Eq
430         | hir::BinOpKind::Ge
431         | hir::BinOpKind::Gt
432         | hir::BinOpKind::Le
433         | hir::BinOpKind::Lt
434         | hir::BinOpKind::Ne
435         | hir::BinOpKind::Or => panic!("This operator does not exist"),
436     })
437 }
438
439 /// Convert an `ast::BinOp` to the corresponding assigning binary operator.
440 fn astbinop2assignop(op: ast::BinOp) -> AssocOp {
441     use syntax::ast::BinOpKind::*;
442     use syntax::parse::token::BinOpToken;
443
444     AssocOp::AssignOp(match op.node {
445         Add => BinOpToken::Plus,
446         BitAnd => BinOpToken::And,
447         BitOr => BinOpToken::Or,
448         BitXor => BinOpToken::Caret,
449         Div => BinOpToken::Slash,
450         Mul => BinOpToken::Star,
451         Rem => BinOpToken::Percent,
452         Shl => BinOpToken::Shl,
453         Shr => BinOpToken::Shr,
454         Sub => BinOpToken::Minus,
455         And | Eq | Ge | Gt | Le | Lt | Ne | Or => panic!("This operator does not exist"),
456     })
457 }
458
459 /// Return the indentation before `span` if there are nothing but `[ \t]`
460 /// before it on its line.
461 fn indentation<'a, T: LintContext<'a>>(cx: &T, span: Span) -> Option<String> {
462     let lo = cx.sess().source_map().lookup_char_pos(span.lo());
463     if let Some(line) = lo.file.get_line(lo.line - 1 /* line numbers in `Loc` are 1-based */) {
464         if let Some((pos, _)) = line.char_indices().find(|&(_, c)| c != ' ' && c != '\t') {
465             // we can mix char and byte positions here because we only consider `[ \t]`
466             if lo.col == CharPos(pos) {
467                 Some(line[..pos].into())
468             } else {
469                 None
470             }
471         } else {
472             None
473         }
474     } else {
475         None
476     }
477 }
478
479 /// Convenience extension trait for `DiagnosticBuilder`.
480 pub trait DiagnosticBuilderExt<'a, T: LintContext<'a>> {
481     /// Suggests to add an attribute to an item.
482     ///
483     /// Correctly handles indentation of the attribute and item.
484     ///
485     /// # Example
486     ///
487     /// ```rust,ignore
488     /// db.suggest_item_with_attr(cx, item, "#[derive(Default)]");
489     /// ```
490     fn suggest_item_with_attr<D: Display + ?Sized>(
491         &mut self,
492         cx: &T,
493         item: Span,
494         msg: &str,
495         attr: &D,
496         applicability: Applicability,
497     );
498
499     /// Suggest to add an item before another.
500     ///
501     /// The item should not be indented (expect for inner indentation).
502     ///
503     /// # Example
504     ///
505     /// ```rust,ignore
506     /// db.suggest_prepend_item(cx, item,
507     /// "fn foo() {
508     ///     bar();
509     /// }");
510     /// ```
511     fn suggest_prepend_item(&mut self, cx: &T, item: Span, msg: &str, new_item: &str, applicability: Applicability);
512
513     /// Suggest to completely remove an item.
514     ///
515     /// This will remove an item and all following whitespace until the next non-whitespace
516     /// character. This should work correctly if item is on the same indentation level as the
517     /// following item.
518     ///
519     /// # Example
520     ///
521     /// ```rust,ignore
522     /// db.suggest_remove_item(cx, item, "remove this")
523     /// ```
524     fn suggest_remove_item(&mut self, cx: &T, item: Span, msg: &str, applicability: Applicability);
525 }
526
527 impl<'a, 'b, 'c, T: LintContext<'c>> DiagnosticBuilderExt<'c, T> for rustc_errors::DiagnosticBuilder<'b> {
528     fn suggest_item_with_attr<D: Display + ?Sized>(
529         &mut self,
530         cx: &T,
531         item: Span,
532         msg: &str,
533         attr: &D,
534         applicability: Applicability,
535     ) {
536         if let Some(indent) = indentation(cx, item) {
537             let span = item.with_hi(item.lo());
538
539             self.span_suggestion_with_applicability(span, msg, format!("{}\n{}", attr, indent), applicability);
540         }
541     }
542
543     fn suggest_prepend_item(&mut self, cx: &T, item: Span, msg: &str, new_item: &str, applicability: Applicability) {
544         if let Some(indent) = indentation(cx, item) {
545             let span = item.with_hi(item.lo());
546
547             let mut first = true;
548             let new_item = new_item
549                 .lines()
550                 .map(|l| {
551                     if first {
552                         first = false;
553                         format!("{}\n", l)
554                     } else {
555                         format!("{}{}\n", indent, l)
556                     }
557                 })
558                 .collect::<String>();
559
560             self.span_suggestion_with_applicability(span, msg, format!("{}\n{}", new_item, indent), applicability);
561         }
562     }
563
564     fn suggest_remove_item(&mut self, cx: &T, item: Span, msg: &str, applicability: Applicability) {
565         let mut remove_span = item;
566         let hi = cx.sess().source_map().next_point(remove_span).hi();
567         let fmpos = cx.sess().source_map().lookup_byte_offset(hi);
568
569         if let Some(ref src) = fmpos.sf.src {
570             let non_whitespace_offset = src[fmpos.pos.to_usize()..].find(|c| c != ' ' && c != '\t' && c != '\n');
571
572             if let Some(non_whitespace_offset) = non_whitespace_offset {
573                 remove_span = remove_span
574                     .with_hi(remove_span.hi() + BytePos(non_whitespace_offset.try_into().expect("offset too large")))
575             }
576         }
577
578         self.span_suggestion_with_applicability(remove_span, msg, String::new(), applicability);
579     }
580 }