]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/lib.rs
added new lint `implicit_clone`
[rust.git] / clippy_utils / src / lib.rs
1 #![feature(box_patterns)]
2 #![feature(in_band_lifetimes)]
3 #![feature(or_patterns)]
4 #![feature(rustc_private)]
5 #![recursion_limit = "512"]
6 #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc, clippy::must_use_candidate)]
7
8 // FIXME: switch to something more ergonomic here, once available.
9 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
10 extern crate rustc_ast;
11 extern crate rustc_ast_pretty;
12 extern crate rustc_data_structures;
13 extern crate rustc_errors;
14 extern crate rustc_hir;
15 extern crate rustc_hir_pretty;
16 extern crate rustc_infer;
17 extern crate rustc_lint;
18 extern crate rustc_middle;
19 extern crate rustc_mir;
20 extern crate rustc_session;
21 extern crate rustc_span;
22 extern crate rustc_target;
23 extern crate rustc_trait_selection;
24 extern crate rustc_typeck;
25
26 #[macro_use]
27 pub mod sym_helper;
28
29 #[allow(clippy::module_name_repetitions)]
30 pub mod ast_utils;
31 pub mod attrs;
32 pub mod camel_case;
33 pub mod comparisons;
34 pub mod consts;
35 mod diagnostics;
36 pub mod eager_or_lazy;
37 pub mod higher;
38 mod hir_utils;
39 pub mod numeric_literal;
40 pub mod paths;
41 pub mod ptr;
42 pub mod qualify_min_const_fn;
43 pub mod sugg;
44 pub mod usage;
45 pub mod visitors;
46
47 pub use self::attrs::*;
48 pub use self::diagnostics::*;
49 pub use self::hir_utils::{both, eq_expr_value, over, SpanlessEq, SpanlessHash};
50
51 use std::borrow::Cow;
52 use std::collections::hash_map::Entry;
53 use std::hash::BuildHasherDefault;
54
55 use if_chain::if_chain;
56 use rustc_ast::ast::{self, Attribute, BorrowKind, LitKind, Mutability};
57 use rustc_data_structures::fx::FxHashMap;
58 use rustc_errors::Applicability;
59 use rustc_hir as hir;
60 use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};
61 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
62 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
63 use rustc_hir::Node;
64 use rustc_hir::{
65     def, Arm, Block, Body, Constness, Crate, Expr, ExprKind, FnDecl, HirId, ImplItem, ImplItemKind, Item, ItemKind,
66     MatchSource, Param, Pat, PatKind, Path, PathSegment, QPath, TraitItem, TraitItemKind, TraitRef, TyKind, Unsafety,
67 };
68 use rustc_infer::infer::TyCtxtInferExt;
69 use rustc_lint::{LateContext, Level, Lint, LintContext};
70 use rustc_middle::hir::exports::Export;
71 use rustc_middle::hir::map::Map;
72 use rustc_middle::ty::subst::{GenericArg, GenericArgKind};
73 use rustc_middle::ty::{self, layout::IntegerExt, DefIdTree, Ty, TyCtxt, TypeFoldable};
74 use rustc_semver::RustcVersion;
75 use rustc_session::Session;
76 use rustc_span::hygiene::{ExpnKind, MacroKind};
77 use rustc_span::source_map::original_sp;
78 use rustc_span::sym;
79 use rustc_span::symbol::{kw, Symbol};
80 use rustc_span::{BytePos, Pos, Span, DUMMY_SP};
81 use rustc_target::abi::Integer;
82 use rustc_trait_selection::traits::query::normalize::AtExt;
83 use smallvec::SmallVec;
84
85 use crate::consts::{constant, Constant};
86
87 pub fn parse_msrv(msrv: &str, sess: Option<&Session>, span: Option<Span>) -> Option<RustcVersion> {
88     if let Ok(version) = RustcVersion::parse(msrv) {
89         return Some(version);
90     } else if let Some(sess) = sess {
91         if let Some(span) = span {
92             sess.span_err(span, &format!("`{}` is not a valid Rust version", msrv));
93         }
94     }
95     None
96 }
97
98 pub fn meets_msrv(msrv: Option<&RustcVersion>, lint_msrv: &RustcVersion) -> bool {
99     msrv.map_or(true, |msrv| msrv.meets(*lint_msrv))
100 }
101
102 #[macro_export]
103 macro_rules! extract_msrv_attr {
104     (LateContext) => {
105         extract_msrv_attr!(@LateContext, ());
106     };
107     (EarlyContext) => {
108         extract_msrv_attr!(@EarlyContext);
109     };
110     (@$context:ident$(, $call:tt)?) => {
111         fn enter_lint_attrs(&mut self, cx: &rustc_lint::$context<'tcx>, attrs: &'tcx [rustc_ast::ast::Attribute]) {
112             use $crate::get_unique_inner_attr;
113             match get_unique_inner_attr(cx.sess$($call)?, attrs, "msrv") {
114                 Some(msrv_attr) => {
115                     if let Some(msrv) = msrv_attr.value_str() {
116                         self.msrv = $crate::parse_msrv(
117                             &msrv.to_string(),
118                             Some(cx.sess$($call)?),
119                             Some(msrv_attr.span),
120                         );
121                     } else {
122                         cx.sess$($call)?.span_err(msrv_attr.span, "bad clippy attribute");
123                     }
124                 },
125                 _ => (),
126             }
127         }
128     };
129 }
130
131 /// Returns `true` if the two spans come from differing expansions (i.e., one is
132 /// from a macro and one isn't).
133 #[must_use]
134 pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
135     rhs.ctxt() != lhs.ctxt()
136 }
137
138 /// Returns `true` if the given `NodeId` is inside a constant context
139 ///
140 /// # Example
141 ///
142 /// ```rust,ignore
143 /// if in_constant(cx, expr.hir_id) {
144 ///     // Do something
145 /// }
146 /// ```
147 pub fn in_constant(cx: &LateContext<'_>, id: HirId) -> bool {
148     let parent_id = cx.tcx.hir().get_parent_item(id);
149     match cx.tcx.hir().get(parent_id) {
150         Node::Item(&Item {
151             kind: ItemKind::Const(..) | ItemKind::Static(..),
152             ..
153         })
154         | Node::TraitItem(&TraitItem {
155             kind: TraitItemKind::Const(..),
156             ..
157         })
158         | Node::ImplItem(&ImplItem {
159             kind: ImplItemKind::Const(..),
160             ..
161         })
162         | Node::AnonConst(_) => true,
163         Node::Item(&Item {
164             kind: ItemKind::Fn(ref sig, ..),
165             ..
166         })
167         | Node::ImplItem(&ImplItem {
168             kind: ImplItemKind::Fn(ref sig, _),
169             ..
170         }) => sig.header.constness == Constness::Const,
171         _ => false,
172     }
173 }
174
175 /// Returns `true` if this `span` was expanded by any macro.
176 #[must_use]
177 pub fn in_macro(span: Span) -> bool {
178     if span.from_expansion() {
179         !matches!(span.ctxt().outer_expn_data().kind, ExpnKind::Desugaring(..))
180     } else {
181         false
182     }
183 }
184
185 // If the snippet is empty, it's an attribute that was inserted during macro
186 // expansion and we want to ignore those, because they could come from external
187 // sources that the user has no control over.
188 // For some reason these attributes don't have any expansion info on them, so
189 // we have to check it this way until there is a better way.
190 pub fn is_present_in_source<T: LintContext>(cx: &T, span: Span) -> bool {
191     if let Some(snippet) = snippet_opt(cx, span) {
192         if snippet.is_empty() {
193             return false;
194         }
195     }
196     true
197 }
198
199 /// Checks if given pattern is a wildcard (`_`)
200 pub fn is_wild<'tcx>(pat: &impl std::ops::Deref<Target = Pat<'tcx>>) -> bool {
201     matches!(pat.kind, PatKind::Wild)
202 }
203
204 /// Checks if type is struct, enum or union type with the given def path.
205 ///
206 /// If the type is a diagnostic item, use `is_type_diagnostic_item` instead.
207 /// If you change the signature, remember to update the internal lint `MatchTypeOnDiagItem`
208 pub fn match_type(cx: &LateContext<'_>, ty: Ty<'_>, path: &[&str]) -> bool {
209     match ty.kind() {
210         ty::Adt(adt, _) => match_def_path(cx, adt.did, path),
211         _ => false,
212     }
213 }
214
215 /// Checks if the type is equal to a diagnostic item
216 ///
217 /// If you change the signature, remember to update the internal lint `MatchTypeOnDiagItem`
218 pub fn is_type_diagnostic_item(cx: &LateContext<'_>, ty: Ty<'_>, diag_item: Symbol) -> bool {
219     match ty.kind() {
220         ty::Adt(adt, _) => cx.tcx.is_diagnostic_item(diag_item, adt.did),
221         _ => false,
222     }
223 }
224
225 /// Checks if the type is equal to a lang item
226 pub fn is_type_lang_item(cx: &LateContext<'_>, ty: Ty<'_>, lang_item: hir::LangItem) -> bool {
227     match ty.kind() {
228         ty::Adt(adt, _) => cx.tcx.lang_items().require(lang_item).unwrap() == adt.did,
229         _ => false,
230     }
231 }
232
233 /// Checks if the method call given in `expr` belongs to the given trait.
234 pub fn match_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, path: &[&str]) -> bool {
235     let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
236     let trt_id = cx.tcx.trait_of_item(def_id);
237     trt_id.map_or(false, |trt_id| match_def_path(cx, trt_id, path))
238 }
239
240 /// Checks if the method call given in `expr` belongs to a trait or other container with a given
241 /// diagnostic item
242 pub fn is_diagnostic_assoc_item(cx: &LateContext<'_>, def_id: DefId, diag_item: Symbol) -> bool {
243     cx.tcx
244         .opt_associated_item(def_id)
245         .and_then(|associated_item| match associated_item.container {
246             ty::TraitContainer(assoc_def_id) => Some(assoc_def_id),
247             ty::ImplContainer(assoc_def_id) => match cx.tcx.type_of(assoc_def_id).kind() {
248                 ty::Adt(adt, _) => Some(adt.did),
249                 ty::Slice(_) => cx.tcx.get_diagnostic_item(sym::slice), // this isn't perfect but it works
250                 _ => None,
251             },
252         })
253         .map_or(false, |assoc_def_id| cx.tcx.is_diagnostic_item(diag_item, assoc_def_id))
254 }
255
256 /// Checks if an expression references a variable of the given name.
257 pub fn match_var(expr: &Expr<'_>, var: Symbol) -> bool {
258     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
259         if let [p] = path.segments {
260             return p.ident.name == var;
261         }
262     }
263     false
264 }
265
266 pub fn last_path_segment<'tcx>(path: &QPath<'tcx>) -> &'tcx PathSegment<'tcx> {
267     match *path {
268         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
269         QPath::TypeRelative(_, ref seg) => seg,
270         QPath::LangItem(..) => panic!("last_path_segment: lang item has no path segments"),
271     }
272 }
273
274 pub fn single_segment_path<'tcx>(path: &QPath<'tcx>) -> Option<&'tcx PathSegment<'tcx>> {
275     match *path {
276         QPath::Resolved(_, ref path) => path.segments.get(0),
277         QPath::TypeRelative(_, ref seg) => Some(seg),
278         QPath::LangItem(..) => None,
279     }
280 }
281
282 /// Matches a `QPath` against a slice of segment string literals.
283 ///
284 /// There is also `match_path` if you are dealing with a `rustc_hir::Path` instead of a
285 /// `rustc_hir::QPath`.
286 ///
287 /// # Examples
288 /// ```rust,ignore
289 /// match_qpath(path, &["std", "rt", "begin_unwind"])
290 /// ```
291 pub fn match_qpath(path: &QPath<'_>, segments: &[&str]) -> bool {
292     match *path {
293         QPath::Resolved(_, ref path) => match_path(path, segments),
294         QPath::TypeRelative(ref ty, ref segment) => match ty.kind {
295             TyKind::Path(ref inner_path) => {
296                 if let [prefix @ .., end] = segments {
297                     if match_qpath(inner_path, prefix) {
298                         return segment.ident.name.as_str() == *end;
299                     }
300                 }
301                 false
302             },
303             _ => false,
304         },
305         QPath::LangItem(..) => false,
306     }
307 }
308
309 /// Matches a `Path` against a slice of segment string literals.
310 ///
311 /// There is also `match_qpath` if you are dealing with a `rustc_hir::QPath` instead of a
312 /// `rustc_hir::Path`.
313 ///
314 /// # Examples
315 ///
316 /// ```rust,ignore
317 /// if match_path(&trait_ref.path, &paths::HASH) {
318 ///     // This is the `std::hash::Hash` trait.
319 /// }
320 ///
321 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
322 ///     // This is a `rustc_middle::lint::Lint`.
323 /// }
324 /// ```
325 pub fn match_path(path: &Path<'_>, segments: &[&str]) -> bool {
326     path.segments
327         .iter()
328         .rev()
329         .zip(segments.iter().rev())
330         .all(|(a, b)| a.ident.name.as_str() == *b)
331 }
332
333 /// Matches a `Path` against a slice of segment string literals, e.g.
334 ///
335 /// # Examples
336 /// ```rust,ignore
337 /// match_path_ast(path, &["std", "rt", "begin_unwind"])
338 /// ```
339 pub fn match_path_ast(path: &ast::Path, segments: &[&str]) -> bool {
340     path.segments
341         .iter()
342         .rev()
343         .zip(segments.iter().rev())
344         .all(|(a, b)| a.ident.name.as_str() == *b)
345 }
346
347 /// If the expression is a path to a local, returns the canonical `HirId` of the local.
348 pub fn path_to_local(expr: &Expr<'_>) -> Option<HirId> {
349     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
350         if let Res::Local(id) = path.res {
351             return Some(id);
352         }
353     }
354     None
355 }
356
357 /// Returns true if the expression is a path to a local with the specified `HirId`.
358 /// Use this function to see if an expression matches a function argument or a match binding.
359 pub fn path_to_local_id(expr: &Expr<'_>, id: HirId) -> bool {
360     path_to_local(expr) == Some(id)
361 }
362
363 /// Gets the definition associated to a path.
364 #[allow(clippy::shadow_unrelated)] // false positive #6563
365 pub fn path_to_res(cx: &LateContext<'_>, path: &[&str]) -> Res {
366     macro_rules! try_res {
367         ($e:expr) => {
368             match $e {
369                 Some(e) => e,
370                 None => return Res::Err,
371             }
372         };
373     }
374     fn item_child_by_name<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, name: &str) -> Option<&'tcx Export<HirId>> {
375         tcx.item_children(def_id)
376             .iter()
377             .find(|item| item.ident.name.as_str() == name)
378     }
379
380     let (krate, first, path) = match *path {
381         [krate, first, ref path @ ..] => (krate, first, path),
382         _ => return Res::Err,
383     };
384     let tcx = cx.tcx;
385     let crates = tcx.crates();
386     let krate = try_res!(crates.iter().find(|&&num| tcx.crate_name(num).as_str() == krate));
387     let first = try_res!(item_child_by_name(tcx, krate.as_def_id(), first));
388     let last = path
389         .iter()
390         .copied()
391         // `get_def_path` seems to generate these empty segments for extern blocks.
392         // We can just ignore them.
393         .filter(|segment| !segment.is_empty())
394         // for each segment, find the child item
395         .try_fold(first, |item, segment| {
396             let def_id = item.res.def_id();
397             if let Some(item) = item_child_by_name(tcx, def_id, segment) {
398                 Some(item)
399             } else if matches!(item.res, Res::Def(DefKind::Enum | DefKind::Struct, _)) {
400                 // it is not a child item so check inherent impl items
401                 tcx.inherent_impls(def_id)
402                     .iter()
403                     .find_map(|&impl_def_id| item_child_by_name(tcx, impl_def_id, segment))
404             } else {
405                 None
406             }
407         });
408     try_res!(last).res
409 }
410
411 /// Convenience function to get the `DefId` of a trait by path.
412 /// It could be a trait or trait alias.
413 pub fn get_trait_def_id(cx: &LateContext<'_>, path: &[&str]) -> Option<DefId> {
414     match path_to_res(cx, path) {
415         Res::Def(DefKind::Trait | DefKind::TraitAlias, trait_id) => Some(trait_id),
416         _ => None,
417     }
418 }
419
420 /// Checks whether a type implements a trait.
421 /// See also `get_trait_def_id`.
422 pub fn implements_trait<'tcx>(
423     cx: &LateContext<'tcx>,
424     ty: Ty<'tcx>,
425     trait_id: DefId,
426     ty_params: &[GenericArg<'tcx>],
427 ) -> bool {
428     // Do not check on infer_types to avoid panic in evaluate_obligation.
429     if ty.has_infer_types() {
430         return false;
431     }
432     let ty = cx.tcx.erase_regions(ty);
433     if ty.has_escaping_bound_vars() {
434         return false;
435     }
436     let ty_params = cx.tcx.mk_substs(ty_params.iter());
437     cx.tcx.type_implements_trait((trait_id, ty, ty_params, cx.param_env))
438 }
439
440 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
441 ///
442 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
443 ///
444 /// ```rust
445 /// struct Point(isize, isize);
446 ///
447 /// impl std::ops::Add for Point {
448 ///     type Output = Self;
449 ///
450 ///     fn add(self, other: Self) -> Self {
451 ///         Point(0, 0)
452 ///     }
453 /// }
454 /// ```
455 pub fn trait_ref_of_method<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx TraitRef<'tcx>> {
456     // Get the implemented trait for the current function
457     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
458     if_chain! {
459         if parent_impl != hir::CRATE_HIR_ID;
460         if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
461         if let hir::ItemKind::Impl(impl_) = &item.kind;
462         then { return impl_.of_trait.as_ref(); }
463     }
464     None
465 }
466
467 /// Checks whether this type implements `Drop`.
468 pub fn has_drop<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
469     match ty.ty_adt_def() {
470         Some(def) => def.has_dtor(cx.tcx),
471         None => false,
472     }
473 }
474
475 /// Returns the method names and argument list of nested method call expressions that make up
476 /// `expr`. method/span lists are sorted with the most recent call first.
477 pub fn method_calls<'tcx>(
478     expr: &'tcx Expr<'tcx>,
479     max_depth: usize,
480 ) -> (Vec<Symbol>, Vec<&'tcx [Expr<'tcx>]>, Vec<Span>) {
481     let mut method_names = Vec::with_capacity(max_depth);
482     let mut arg_lists = Vec::with_capacity(max_depth);
483     let mut spans = Vec::with_capacity(max_depth);
484
485     let mut current = expr;
486     for _ in 0..max_depth {
487         if let ExprKind::MethodCall(path, span, args, _) = &current.kind {
488             if args.iter().any(|e| e.span.from_expansion()) {
489                 break;
490             }
491             method_names.push(path.ident.name);
492             arg_lists.push(&**args);
493             spans.push(*span);
494             current = &args[0];
495         } else {
496             break;
497         }
498     }
499
500     (method_names, arg_lists, spans)
501 }
502
503 /// Matches an `Expr` against a chain of methods, and return the matched `Expr`s.
504 ///
505 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
506 /// `method_chain_args(expr, &["bar", "baz"])` will return a `Vec`
507 /// containing the `Expr`s for
508 /// `.bar()` and `.baz()`
509 pub fn method_chain_args<'a>(expr: &'a Expr<'_>, methods: &[&str]) -> Option<Vec<&'a [Expr<'a>]>> {
510     let mut current = expr;
511     let mut matched = Vec::with_capacity(methods.len());
512     for method_name in methods.iter().rev() {
513         // method chains are stored last -> first
514         if let ExprKind::MethodCall(ref path, _, ref args, _) = current.kind {
515             if path.ident.name.as_str() == *method_name {
516                 if args.iter().any(|e| e.span.from_expansion()) {
517                     return None;
518                 }
519                 matched.push(&**args); // build up `matched` backwards
520                 current = &args[0] // go to parent expression
521             } else {
522                 return None;
523             }
524         } else {
525             return None;
526         }
527     }
528     // Reverse `matched` so that it is in the same order as `methods`.
529     matched.reverse();
530     Some(matched)
531 }
532
533 /// Returns `true` if the provided `def_id` is an entrypoint to a program.
534 pub fn is_entrypoint_fn(cx: &LateContext<'_>, def_id: DefId) -> bool {
535     cx.tcx
536         .entry_fn(LOCAL_CRATE)
537         .map_or(false, |(entry_fn_def_id, _)| def_id == entry_fn_def_id.to_def_id())
538 }
539
540 /// Returns `true` if the expression is in the program's `#[panic_handler]`.
541 pub fn is_in_panic_handler(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
542     let parent = cx.tcx.hir().get_parent_item(e.hir_id);
543     let def_id = cx.tcx.hir().local_def_id(parent).to_def_id();
544     Some(def_id) == cx.tcx.lang_items().panic_impl()
545 }
546
547 /// Gets the name of the item the expression is in, if available.
548 pub fn get_item_name(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<Symbol> {
549     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
550     match cx.tcx.hir().find(parent_id) {
551         Some(
552             Node::Item(Item { ident, .. })
553             | Node::TraitItem(TraitItem { ident, .. })
554             | Node::ImplItem(ImplItem { ident, .. }),
555         ) => Some(ident.name),
556         _ => None,
557     }
558 }
559
560 /// Gets the name of a `Pat`, if any.
561 pub fn get_pat_name(pat: &Pat<'_>) -> Option<Symbol> {
562     match pat.kind {
563         PatKind::Binding(.., ref spname, _) => Some(spname.name),
564         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
565         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
566         _ => None,
567     }
568 }
569
570 struct ContainsName {
571     name: Symbol,
572     result: bool,
573 }
574
575 impl<'tcx> Visitor<'tcx> for ContainsName {
576     type Map = Map<'tcx>;
577
578     fn visit_name(&mut self, _: Span, name: Symbol) {
579         if self.name == name {
580             self.result = true;
581         }
582     }
583     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
584         NestedVisitorMap::None
585     }
586 }
587
588 /// Checks if an `Expr` contains a certain name.
589 pub fn contains_name(name: Symbol, expr: &Expr<'_>) -> bool {
590     let mut cn = ContainsName { name, result: false };
591     cn.visit_expr(expr);
592     cn.result
593 }
594
595 /// Returns `true` if `expr` contains a return expression
596 pub fn contains_return(expr: &hir::Expr<'_>) -> bool {
597     struct RetCallFinder {
598         found: bool,
599     }
600
601     impl<'tcx> hir::intravisit::Visitor<'tcx> for RetCallFinder {
602         type Map = Map<'tcx>;
603
604         fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
605             if self.found {
606                 return;
607             }
608             if let hir::ExprKind::Ret(..) = &expr.kind {
609                 self.found = true;
610             } else {
611                 hir::intravisit::walk_expr(self, expr);
612             }
613         }
614
615         fn nested_visit_map(&mut self) -> hir::intravisit::NestedVisitorMap<Self::Map> {
616             hir::intravisit::NestedVisitorMap::None
617         }
618     }
619
620     let mut visitor = RetCallFinder { found: false };
621     visitor.visit_expr(expr);
622     visitor.found
623 }
624
625 struct FindMacroCalls<'a, 'b> {
626     names: &'a [&'b str],
627     result: Vec<Span>,
628 }
629
630 impl<'a, 'b, 'tcx> Visitor<'tcx> for FindMacroCalls<'a, 'b> {
631     type Map = Map<'tcx>;
632
633     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
634         if self.names.iter().any(|fun| is_expn_of(expr.span, fun).is_some()) {
635             self.result.push(expr.span);
636         }
637         // and check sub-expressions
638         intravisit::walk_expr(self, expr);
639     }
640
641     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
642         NestedVisitorMap::None
643     }
644 }
645
646 /// Finds calls of the specified macros in a function body.
647 pub fn find_macro_calls(names: &[&str], body: &Body<'_>) -> Vec<Span> {
648     let mut fmc = FindMacroCalls {
649         names,
650         result: Vec::new(),
651     };
652     fmc.visit_expr(&body.value);
653     fmc.result
654 }
655
656 /// Converts a span to a code snippet if available, otherwise use default.
657 ///
658 /// This is useful if you want to provide suggestions for your lint or more generally, if you want
659 /// to convert a given `Span` to a `str`.
660 ///
661 /// # Example
662 /// ```rust,ignore
663 /// snippet(cx, expr.span, "..")
664 /// ```
665 pub fn snippet<'a, T: LintContext>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
666     snippet_opt(cx, span).map_or_else(|| Cow::Borrowed(default), From::from)
667 }
668
669 /// Same as `snippet`, but it adapts the applicability level by following rules:
670 ///
671 /// - Applicability level `Unspecified` will never be changed.
672 /// - If the span is inside a macro, change the applicability level to `MaybeIncorrect`.
673 /// - If the default value is used and the applicability level is `MachineApplicable`, change it to
674 /// `HasPlaceholders`
675 pub fn snippet_with_applicability<'a, T: LintContext>(
676     cx: &T,
677     span: Span,
678     default: &'a str,
679     applicability: &mut Applicability,
680 ) -> Cow<'a, str> {
681     if *applicability != Applicability::Unspecified && span.from_expansion() {
682         *applicability = Applicability::MaybeIncorrect;
683     }
684     snippet_opt(cx, span).map_or_else(
685         || {
686             if *applicability == Applicability::MachineApplicable {
687                 *applicability = Applicability::HasPlaceholders;
688             }
689             Cow::Borrowed(default)
690         },
691         From::from,
692     )
693 }
694
695 /// Same as `snippet`, but should only be used when it's clear that the input span is
696 /// not a macro argument.
697 pub fn snippet_with_macro_callsite<'a, T: LintContext>(cx: &T, span: Span, default: &'a str) -> Cow<'a, str> {
698     snippet(cx, span.source_callsite(), default)
699 }
700
701 /// Converts a span to a code snippet. Returns `None` if not available.
702 pub fn snippet_opt<T: LintContext>(cx: &T, span: Span) -> Option<String> {
703     cx.sess().source_map().span_to_snippet(span).ok()
704 }
705
706 /// Converts a span (from a block) to a code snippet if available, otherwise use default.
707 ///
708 /// This trims the code of indentation, except for the first line. Use it for blocks or block-like
709 /// things which need to be printed as such.
710 ///
711 /// The `indent_relative_to` arg can be used, to provide a span, where the indentation of the
712 /// resulting snippet of the given span.
713 ///
714 /// # Example
715 ///
716 /// ```rust,ignore
717 /// snippet_block(cx, block.span, "..", None)
718 /// // where, `block` is the block of the if expr
719 ///     if x {
720 ///         y;
721 ///     }
722 /// // will return the snippet
723 /// {
724 ///     y;
725 /// }
726 /// ```
727 ///
728 /// ```rust,ignore
729 /// snippet_block(cx, block.span, "..", Some(if_expr.span))
730 /// // where, `block` is the block of the if expr
731 ///     if x {
732 ///         y;
733 ///     }
734 /// // will return the snippet
735 /// {
736 ///         y;
737 ///     } // aligned with `if`
738 /// ```
739 /// Note that the first line of the snippet always has 0 indentation.
740 pub fn snippet_block<'a, T: LintContext>(
741     cx: &T,
742     span: Span,
743     default: &'a str,
744     indent_relative_to: Option<Span>,
745 ) -> Cow<'a, str> {
746     let snip = snippet(cx, span, default);
747     let indent = indent_relative_to.and_then(|s| indent_of(cx, s));
748     reindent_multiline(snip, true, indent)
749 }
750
751 /// Same as `snippet_block`, but adapts the applicability level by the rules of
752 /// `snippet_with_applicability`.
753 pub fn snippet_block_with_applicability<'a, T: LintContext>(
754     cx: &T,
755     span: Span,
756     default: &'a str,
757     indent_relative_to: Option<Span>,
758     applicability: &mut Applicability,
759 ) -> Cow<'a, str> {
760     let snip = snippet_with_applicability(cx, span, default, applicability);
761     let indent = indent_relative_to.and_then(|s| indent_of(cx, s));
762     reindent_multiline(snip, true, indent)
763 }
764
765 /// Returns a new Span that extends the original Span to the first non-whitespace char of the first
766 /// line.
767 ///
768 /// ```rust,ignore
769 ///     let x = ();
770 /// //          ^^
771 /// // will be converted to
772 ///     let x = ();
773 /// //  ^^^^^^^^^^
774 /// ```
775 pub fn first_line_of_span<T: LintContext>(cx: &T, span: Span) -> Span {
776     first_char_in_first_line(cx, span).map_or(span, |first_char_pos| span.with_lo(first_char_pos))
777 }
778
779 fn first_char_in_first_line<T: LintContext>(cx: &T, span: Span) -> Option<BytePos> {
780     let line_span = line_span(cx, span);
781     snippet_opt(cx, line_span).and_then(|snip| {
782         snip.find(|c: char| !c.is_whitespace())
783             .map(|pos| line_span.lo() + BytePos::from_usize(pos))
784     })
785 }
786
787 /// Returns the indentation of the line of a span
788 ///
789 /// ```rust,ignore
790 /// let x = ();
791 /// //      ^^ -- will return 0
792 ///     let x = ();
793 /// //          ^^ -- will return 4
794 /// ```
795 pub fn indent_of<T: LintContext>(cx: &T, span: Span) -> Option<usize> {
796     snippet_opt(cx, line_span(cx, span)).and_then(|snip| snip.find(|c: char| !c.is_whitespace()))
797 }
798
799 /// Returns the positon just before rarrow
800 ///
801 /// ```rust,ignore
802 /// fn into(self) -> () {}
803 ///              ^
804 /// // in case of unformatted code
805 /// fn into2(self)-> () {}
806 ///               ^
807 /// fn into3(self)   -> () {}
808 ///               ^
809 /// ```
810 pub fn position_before_rarrow(s: &str) -> Option<usize> {
811     s.rfind("->").map(|rpos| {
812         let mut rpos = rpos;
813         let chars: Vec<char> = s.chars().collect();
814         while rpos > 1 {
815             if let Some(c) = chars.get(rpos - 1) {
816                 if c.is_whitespace() {
817                     rpos -= 1;
818                     continue;
819                 }
820             }
821             break;
822         }
823         rpos
824     })
825 }
826
827 /// Extends the span to the beginning of the spans line, incl. whitespaces.
828 ///
829 /// ```rust,ignore
830 ///        let x = ();
831 /// //             ^^
832 /// // will be converted to
833 ///        let x = ();
834 /// // ^^^^^^^^^^^^^^
835 /// ```
836 fn line_span<T: LintContext>(cx: &T, span: Span) -> Span {
837     let span = original_sp(span, DUMMY_SP);
838     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
839     let line_no = source_map_and_line.line;
840     let line_start = source_map_and_line.sf.lines[line_no];
841     Span::new(line_start, span.hi(), span.ctxt())
842 }
843
844 /// Like `snippet_block`, but add braces if the expr is not an `ExprKind::Block`.
845 /// Also takes an `Option<String>` which can be put inside the braces.
846 pub fn expr_block<'a, T: LintContext>(
847     cx: &T,
848     expr: &Expr<'_>,
849     option: Option<String>,
850     default: &'a str,
851     indent_relative_to: Option<Span>,
852 ) -> Cow<'a, str> {
853     let code = snippet_block(cx, expr.span, default, indent_relative_to);
854     let string = option.unwrap_or_default();
855     if expr.span.from_expansion() {
856         Cow::Owned(format!("{{ {} }}", snippet_with_macro_callsite(cx, expr.span, default)))
857     } else if let ExprKind::Block(_, _) = expr.kind {
858         Cow::Owned(format!("{}{}", code, string))
859     } else if string.is_empty() {
860         Cow::Owned(format!("{{ {} }}", code))
861     } else {
862         Cow::Owned(format!("{{\n{};\n{}\n}}", code, string))
863     }
864 }
865
866 /// Reindent a multiline string with possibility of ignoring the first line.
867 #[allow(clippy::needless_pass_by_value)]
868 pub fn reindent_multiline(s: Cow<'_, str>, ignore_first: bool, indent: Option<usize>) -> Cow<'_, str> {
869     let s_space = reindent_multiline_inner(&s, ignore_first, indent, ' ');
870     let s_tab = reindent_multiline_inner(&s_space, ignore_first, indent, '\t');
871     reindent_multiline_inner(&s_tab, ignore_first, indent, ' ').into()
872 }
873
874 fn reindent_multiline_inner(s: &str, ignore_first: bool, indent: Option<usize>, ch: char) -> String {
875     let x = s
876         .lines()
877         .skip(ignore_first as usize)
878         .filter_map(|l| {
879             if l.is_empty() {
880                 None
881             } else {
882                 // ignore empty lines
883                 Some(l.char_indices().find(|&(_, x)| x != ch).unwrap_or((l.len(), ch)).0)
884             }
885         })
886         .min()
887         .unwrap_or(0);
888     let indent = indent.unwrap_or(0);
889     s.lines()
890         .enumerate()
891         .map(|(i, l)| {
892             if (ignore_first && i == 0) || l.is_empty() {
893                 l.to_owned()
894             } else if x > indent {
895                 l.split_at(x - indent).1.to_owned()
896             } else {
897                 " ".repeat(indent - x) + l
898             }
899         })
900         .collect::<Vec<String>>()
901         .join("\n")
902 }
903
904 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
905 pub fn get_parent_expr<'tcx>(cx: &LateContext<'tcx>, e: &Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
906     let map = &cx.tcx.hir();
907     let hir_id = e.hir_id;
908     let parent_id = map.get_parent_node(hir_id);
909     if hir_id == parent_id {
910         return None;
911     }
912     map.find(parent_id).and_then(|node| {
913         if let Node::Expr(parent) = node {
914             Some(parent)
915         } else {
916             None
917         }
918     })
919 }
920
921 pub fn get_enclosing_block<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Block<'tcx>> {
922     let map = &cx.tcx.hir();
923     let enclosing_node = map
924         .get_enclosing_scope(hir_id)
925         .and_then(|enclosing_id| map.find(enclosing_id));
926     enclosing_node.and_then(|node| match node {
927         Node::Block(block) => Some(block),
928         Node::Item(&Item {
929             kind: ItemKind::Fn(_, _, eid),
930             ..
931         })
932         | Node::ImplItem(&ImplItem {
933             kind: ImplItemKind::Fn(_, eid),
934             ..
935         }) => match cx.tcx.hir().body(eid).value.kind {
936             ExprKind::Block(ref block, _) => Some(block),
937             _ => None,
938         },
939         _ => None,
940     })
941 }
942
943 /// Returns the base type for HIR references and pointers.
944 pub fn walk_ptrs_hir_ty<'tcx>(ty: &'tcx hir::Ty<'tcx>) -> &'tcx hir::Ty<'tcx> {
945     match ty.kind {
946         TyKind::Ptr(ref mut_ty) | TyKind::Rptr(_, ref mut_ty) => walk_ptrs_hir_ty(&mut_ty.ty),
947         _ => ty,
948     }
949 }
950
951 /// Returns the base type for references and raw pointers, and count reference
952 /// depth.
953 pub fn walk_ptrs_ty_depth(ty: Ty<'_>) -> (Ty<'_>, usize) {
954     fn inner(ty: Ty<'_>, depth: usize) -> (Ty<'_>, usize) {
955         match ty.kind() {
956             ty::Ref(_, ty, _) => inner(ty, depth + 1),
957             _ => (ty, depth),
958         }
959     }
960     inner(ty, 0)
961 }
962
963 /// Checks whether the given expression is a constant integer of the given value.
964 /// unlike `is_integer_literal`, this version does const folding
965 pub fn is_integer_const(cx: &LateContext<'_>, e: &Expr<'_>, value: u128) -> bool {
966     if is_integer_literal(e, value) {
967         return true;
968     }
969     let map = cx.tcx.hir();
970     let parent_item = map.get_parent_item(e.hir_id);
971     if let Some((Constant::Int(v), _)) = map
972         .maybe_body_owned_by(parent_item)
973         .and_then(|body_id| constant(cx, cx.tcx.typeck_body(body_id), e))
974     {
975         value == v
976     } else {
977         false
978     }
979 }
980
981 /// Checks whether the given expression is a constant literal of the given value.
982 pub fn is_integer_literal(expr: &Expr<'_>, value: u128) -> bool {
983     // FIXME: use constant folding
984     if let ExprKind::Lit(ref spanned) = expr.kind {
985         if let LitKind::Int(v, _) = spanned.node {
986             return v == value;
987         }
988     }
989     false
990 }
991
992 /// Returns `true` if the given `Expr` has been coerced before.
993 ///
994 /// Examples of coercions can be found in the Nomicon at
995 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
996 ///
997 /// See `rustc_middle::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
998 /// information on adjustments and coercions.
999 pub fn is_adjusted(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
1000     cx.typeck_results().adjustments().get(e.hir_id).is_some()
1001 }
1002
1003 /// Returns the pre-expansion span if is this comes from an expansion of the
1004 /// macro `name`.
1005 /// See also `is_direct_expn_of`.
1006 #[must_use]
1007 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
1008     loop {
1009         if span.from_expansion() {
1010             let data = span.ctxt().outer_expn_data();
1011             let new_span = data.call_site;
1012
1013             if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
1014                 if mac_name.as_str() == name {
1015                     return Some(new_span);
1016                 }
1017             }
1018
1019             span = new_span;
1020         } else {
1021             return None;
1022         }
1023     }
1024 }
1025
1026 /// Returns the pre-expansion span if the span directly comes from an expansion
1027 /// of the macro `name`.
1028 /// The difference with `is_expn_of` is that in
1029 /// ```rust,ignore
1030 /// foo!(bar!(42));
1031 /// ```
1032 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
1033 /// `bar!` by
1034 /// `is_direct_expn_of`.
1035 #[must_use]
1036 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
1037     if span.from_expansion() {
1038         let data = span.ctxt().outer_expn_data();
1039         let new_span = data.call_site;
1040
1041         if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
1042             if mac_name.as_str() == name {
1043                 return Some(new_span);
1044             }
1045         }
1046     }
1047
1048     None
1049 }
1050
1051 /// Convenience function to get the return type of a function.
1052 pub fn return_ty<'tcx>(cx: &LateContext<'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
1053     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
1054     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
1055     cx.tcx.erase_late_bound_regions(ret_ty)
1056 }
1057
1058 /// Walks into `ty` and returns `true` if any inner type is the same as `other_ty`
1059 pub fn contains_ty(ty: Ty<'_>, other_ty: Ty<'_>) -> bool {
1060     ty.walk().any(|inner| match inner.unpack() {
1061         GenericArgKind::Type(inner_ty) => ty::TyS::same_type(other_ty, inner_ty),
1062         GenericArgKind::Lifetime(_) | GenericArgKind::Const(_) => false,
1063     })
1064 }
1065
1066 /// Returns `true` if the given type is an `unsafe` function.
1067 pub fn type_is_unsafe_function<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
1068     match ty.kind() {
1069         ty::FnDef(..) | ty::FnPtr(_) => ty.fn_sig(cx.tcx).unsafety() == Unsafety::Unsafe,
1070         _ => false,
1071     }
1072 }
1073
1074 pub fn is_copy<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
1075     ty.is_copy_modulo_regions(cx.tcx.at(DUMMY_SP), cx.param_env)
1076 }
1077
1078 /// Checks if an expression is constructing a tuple-like enum variant or struct
1079 pub fn is_ctor_or_promotable_const_function(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1080     if let ExprKind::Call(ref fun, _) = expr.kind {
1081         if let ExprKind::Path(ref qp) = fun.kind {
1082             let res = cx.qpath_res(qp, fun.hir_id);
1083             return match res {
1084                 def::Res::Def(DefKind::Variant | DefKind::Ctor(..), ..) => true,
1085                 def::Res::Def(_, def_id) => cx.tcx.is_promotable_const_fn(def_id),
1086                 _ => false,
1087             };
1088         }
1089     }
1090     false
1091 }
1092
1093 /// Returns `true` if a pattern is refutable.
1094 // TODO: should be implemented using rustc/mir_build/thir machinery
1095 pub fn is_refutable(cx: &LateContext<'_>, pat: &Pat<'_>) -> bool {
1096     fn is_enum_variant(cx: &LateContext<'_>, qpath: &QPath<'_>, id: HirId) -> bool {
1097         matches!(
1098             cx.qpath_res(qpath, id),
1099             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
1100         )
1101     }
1102
1103     fn are_refutable<'a, I: Iterator<Item = &'a Pat<'a>>>(cx: &LateContext<'_>, mut i: I) -> bool {
1104         i.any(|pat| is_refutable(cx, pat))
1105     }
1106
1107     match pat.kind {
1108         PatKind::Wild => false,
1109         PatKind::Binding(_, _, _, pat) => pat.map_or(false, |pat| is_refutable(cx, pat)),
1110         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
1111         PatKind::Lit(..) | PatKind::Range(..) => true,
1112         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
1113         PatKind::Or(ref pats) => {
1114             // TODO: should be the honest check, that pats is exhaustive set
1115             are_refutable(cx, pats.iter().map(|pat| &**pat))
1116         },
1117         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
1118         PatKind::Struct(ref qpath, ref fields, _) => {
1119             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, fields.iter().map(|field| &*field.pat))
1120         },
1121         PatKind::TupleStruct(ref qpath, ref pats, _) => {
1122             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, pats.iter().map(|pat| &**pat))
1123         },
1124         PatKind::Slice(ref head, ref middle, ref tail) => {
1125             match &cx.typeck_results().node_type(pat.hir_id).kind() {
1126                 ty::Slice(..) => {
1127                     // [..] is the only irrefutable slice pattern.
1128                     !head.is_empty() || middle.is_none() || !tail.is_empty()
1129                 },
1130                 ty::Array(..) => are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat)),
1131                 _ => {
1132                     // unreachable!()
1133                     true
1134                 },
1135             }
1136         },
1137     }
1138 }
1139
1140 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
1141 /// implementations have.
1142 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
1143     attrs.iter().any(|attr| attr.has_name(sym::automatically_derived))
1144 }
1145
1146 /// Remove blocks around an expression.
1147 ///
1148 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
1149 /// themselves.
1150 pub fn remove_blocks<'tcx>(mut expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
1151     while let ExprKind::Block(ref block, ..) = expr.kind {
1152         match (block.stmts.is_empty(), block.expr.as_ref()) {
1153             (true, Some(e)) => expr = e,
1154             _ => break,
1155         }
1156     }
1157     expr
1158 }
1159
1160 pub fn is_self(slf: &Param<'_>) -> bool {
1161     if let PatKind::Binding(.., name, _) = slf.pat.kind {
1162         name.name == kw::SelfLower
1163     } else {
1164         false
1165     }
1166 }
1167
1168 pub fn is_self_ty(slf: &hir::Ty<'_>) -> bool {
1169     if_chain! {
1170         if let TyKind::Path(QPath::Resolved(None, ref path)) = slf.kind;
1171         if let Res::SelfTy(..) = path.res;
1172         then {
1173             return true
1174         }
1175     }
1176     false
1177 }
1178
1179 pub fn iter_input_pats<'tcx>(decl: &FnDecl<'_>, body: &'tcx Body<'_>) -> impl Iterator<Item = &'tcx Param<'tcx>> {
1180     (0..decl.inputs.len()).map(move |i| &body.params[i])
1181 }
1182
1183 /// Checks if a given expression is a match expression expanded from the `?`
1184 /// operator or the `try` macro.
1185 pub fn is_try<'tcx>(expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
1186     fn is_ok(arm: &Arm<'_>) -> bool {
1187         if_chain! {
1188             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pat.kind;
1189             if match_qpath(path, &paths::RESULT_OK[1..]);
1190             if let PatKind::Binding(_, hir_id, _, None) = pat[0].kind;
1191             if path_to_local_id(arm.body, hir_id);
1192             then {
1193                 return true;
1194             }
1195         }
1196         false
1197     }
1198
1199     fn is_err(arm: &Arm<'_>) -> bool {
1200         if let PatKind::TupleStruct(ref path, _, _) = arm.pat.kind {
1201             match_qpath(path, &paths::RESULT_ERR[1..])
1202         } else {
1203             false
1204         }
1205     }
1206
1207     if let ExprKind::Match(_, ref arms, ref source) = expr.kind {
1208         // desugared from a `?` operator
1209         if let MatchSource::TryDesugar = *source {
1210             return Some(expr);
1211         }
1212
1213         if_chain! {
1214             if arms.len() == 2;
1215             if arms[0].guard.is_none();
1216             if arms[1].guard.is_none();
1217             if (is_ok(&arms[0]) && is_err(&arms[1])) ||
1218                 (is_ok(&arms[1]) && is_err(&arms[0]));
1219             then {
1220                 return Some(expr);
1221             }
1222         }
1223     }
1224
1225     None
1226 }
1227
1228 /// Returns `true` if the lint is allowed in the current context
1229 ///
1230 /// Useful for skipping long running code when it's unnecessary
1231 pub fn is_allowed(cx: &LateContext<'_>, lint: &'static Lint, id: HirId) -> bool {
1232     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1233 }
1234
1235 pub fn strip_pat_refs<'hir>(mut pat: &'hir Pat<'hir>) -> &'hir Pat<'hir> {
1236     while let PatKind::Ref(subpat, _) = pat.kind {
1237         pat = subpat;
1238     }
1239     pat
1240 }
1241
1242 pub fn int_bits(tcx: TyCtxt<'_>, ity: ty::IntTy) -> u64 {
1243     Integer::from_int_ty(&tcx, ity).size().bits()
1244 }
1245
1246 #[allow(clippy::cast_possible_wrap)]
1247 /// Turn a constant int byte representation into an i128
1248 pub fn sext(tcx: TyCtxt<'_>, u: u128, ity: ty::IntTy) -> i128 {
1249     let amt = 128 - int_bits(tcx, ity);
1250     ((u as i128) << amt) >> amt
1251 }
1252
1253 #[allow(clippy::cast_sign_loss)]
1254 /// clip unused bytes
1255 pub fn unsext(tcx: TyCtxt<'_>, u: i128, ity: ty::IntTy) -> u128 {
1256     let amt = 128 - int_bits(tcx, ity);
1257     ((u as u128) << amt) >> amt
1258 }
1259
1260 /// clip unused bytes
1261 pub fn clip(tcx: TyCtxt<'_>, u: u128, ity: ty::UintTy) -> u128 {
1262     let bits = Integer::from_uint_ty(&tcx, ity).size().bits();
1263     let amt = 128 - bits;
1264     (u << amt) >> amt
1265 }
1266
1267 /// Removes block comments from the given `Vec` of lines.
1268 ///
1269 /// # Examples
1270 ///
1271 /// ```rust,ignore
1272 /// without_block_comments(vec!["/*", "foo", "*/"]);
1273 /// // => vec![]
1274 ///
1275 /// without_block_comments(vec!["bar", "/*", "foo", "*/"]);
1276 /// // => vec!["bar"]
1277 /// ```
1278 pub fn without_block_comments(lines: Vec<&str>) -> Vec<&str> {
1279     let mut without = vec![];
1280
1281     let mut nest_level = 0;
1282
1283     for line in lines {
1284         if line.contains("/*") {
1285             nest_level += 1;
1286             continue;
1287         } else if line.contains("*/") {
1288             nest_level -= 1;
1289             continue;
1290         }
1291
1292         if nest_level == 0 {
1293             without.push(line);
1294         }
1295     }
1296
1297     without
1298 }
1299
1300 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_>, node: HirId) -> bool {
1301     let map = &tcx.hir();
1302     let mut prev_enclosing_node = None;
1303     let mut enclosing_node = node;
1304     while Some(enclosing_node) != prev_enclosing_node {
1305         if is_automatically_derived(map.attrs(enclosing_node)) {
1306             return true;
1307         }
1308         prev_enclosing_node = Some(enclosing_node);
1309         enclosing_node = map.get_parent_item(enclosing_node);
1310     }
1311     false
1312 }
1313
1314 /// Returns true if ty has `iter` or `iter_mut` methods
1315 pub fn has_iter_method(cx: &LateContext<'_>, probably_ref_ty: Ty<'_>) -> Option<&'static str> {
1316     // FIXME: instead of this hard-coded list, we should check if `<adt>::iter`
1317     // exists and has the desired signature. Unfortunately FnCtxt is not exported
1318     // so we can't use its `lookup_method` method.
1319     let into_iter_collections: [&[&str]; 13] = [
1320         &paths::VEC,
1321         &paths::OPTION,
1322         &paths::RESULT,
1323         &paths::BTREESET,
1324         &paths::BTREEMAP,
1325         &paths::VEC_DEQUE,
1326         &paths::LINKED_LIST,
1327         &paths::BINARY_HEAP,
1328         &paths::HASHSET,
1329         &paths::HASHMAP,
1330         &paths::PATH_BUF,
1331         &paths::PATH,
1332         &paths::RECEIVER,
1333     ];
1334
1335     let ty_to_check = match probably_ref_ty.kind() {
1336         ty::Ref(_, ty_to_check, _) => ty_to_check,
1337         _ => probably_ref_ty,
1338     };
1339
1340     let def_id = match ty_to_check.kind() {
1341         ty::Array(..) => return Some("array"),
1342         ty::Slice(..) => return Some("slice"),
1343         ty::Adt(adt, _) => adt.did,
1344         _ => return None,
1345     };
1346
1347     for path in &into_iter_collections {
1348         if match_def_path(cx, def_id, path) {
1349             return Some(*path.last().unwrap());
1350         }
1351     }
1352     None
1353 }
1354
1355 /// Matches a function call with the given path and returns the arguments.
1356 ///
1357 /// Usage:
1358 ///
1359 /// ```rust,ignore
1360 /// if let Some(args) = match_function_call(cx, cmp_max_call, &paths::CMP_MAX);
1361 /// ```
1362 pub fn match_function_call<'tcx>(
1363     cx: &LateContext<'tcx>,
1364     expr: &'tcx Expr<'_>,
1365     path: &[&str],
1366 ) -> Option<&'tcx [Expr<'tcx>]> {
1367     if_chain! {
1368         if let ExprKind::Call(ref fun, ref args) = expr.kind;
1369         if let ExprKind::Path(ref qpath) = fun.kind;
1370         if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
1371         if match_def_path(cx, fun_def_id, path);
1372         then {
1373             return Some(&args)
1374         }
1375     };
1376     None
1377 }
1378
1379 /// Checks if `Ty` is normalizable. This function is useful
1380 /// to avoid crashes on `layout_of`.
1381 pub fn is_normalizable<'tcx>(cx: &LateContext<'tcx>, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> bool {
1382     cx.tcx.infer_ctxt().enter(|infcx| {
1383         let cause = rustc_middle::traits::ObligationCause::dummy();
1384         infcx.at(&cause, param_env).normalize(ty).is_ok()
1385     })
1386 }
1387
1388 pub fn match_def_path<'tcx>(cx: &LateContext<'tcx>, did: DefId, syms: &[&str]) -> bool {
1389     // We have to convert `syms` to `&[Symbol]` here because rustc's `match_def_path`
1390     // accepts only that. We should probably move to Symbols in Clippy as well.
1391     let syms = syms.iter().map(|p| Symbol::intern(p)).collect::<Vec<Symbol>>();
1392     cx.match_def_path(did, &syms)
1393 }
1394
1395 pub fn match_panic_call<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Option<&'tcx [Expr<'tcx>]> {
1396     match_function_call(cx, expr, &paths::BEGIN_PANIC)
1397         .or_else(|| match_function_call(cx, expr, &paths::BEGIN_PANIC_FMT))
1398         .or_else(|| match_function_call(cx, expr, &paths::PANIC_ANY))
1399         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC))
1400         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC_FMT))
1401         .or_else(|| match_function_call(cx, expr, &paths::PANICKING_PANIC_STR))
1402 }
1403
1404 pub fn match_panic_def_id(cx: &LateContext<'_>, did: DefId) -> bool {
1405     match_def_path(cx, did, &paths::BEGIN_PANIC)
1406         || match_def_path(cx, did, &paths::BEGIN_PANIC_FMT)
1407         || match_def_path(cx, did, &paths::PANIC_ANY)
1408         || match_def_path(cx, did, &paths::PANICKING_PANIC)
1409         || match_def_path(cx, did, &paths::PANICKING_PANIC_FMT)
1410         || match_def_path(cx, did, &paths::PANICKING_PANIC_STR)
1411 }
1412
1413 /// Returns the list of condition expressions and the list of blocks in a
1414 /// sequence of `if/else`.
1415 /// E.g., this returns `([a, b], [c, d, e])` for the expression
1416 /// `if a { c } else if b { d } else { e }`.
1417 pub fn if_sequence<'tcx>(
1418     mut expr: &'tcx Expr<'tcx>,
1419 ) -> (SmallVec<[&'tcx Expr<'tcx>; 1]>, SmallVec<[&'tcx Block<'tcx>; 1]>) {
1420     let mut conds = SmallVec::new();
1421     let mut blocks: SmallVec<[&Block<'_>; 1]> = SmallVec::new();
1422
1423     while let ExprKind::If(ref cond, ref then_expr, ref else_expr) = expr.kind {
1424         conds.push(&**cond);
1425         if let ExprKind::Block(ref block, _) = then_expr.kind {
1426             blocks.push(block);
1427         } else {
1428             panic!("ExprKind::If node is not an ExprKind::Block");
1429         }
1430
1431         if let Some(ref else_expr) = *else_expr {
1432             expr = else_expr;
1433         } else {
1434             break;
1435         }
1436     }
1437
1438     // final `else {..}`
1439     if !blocks.is_empty() {
1440         if let ExprKind::Block(ref block, _) = expr.kind {
1441             blocks.push(&**block);
1442         }
1443     }
1444
1445     (conds, blocks)
1446 }
1447
1448 pub fn parent_node_is_if_expr(expr: &Expr<'_>, cx: &LateContext<'_>) -> bool {
1449     let map = cx.tcx.hir();
1450     let parent_id = map.get_parent_node(expr.hir_id);
1451     let parent_node = map.get(parent_id);
1452     matches!(
1453         parent_node,
1454         Node::Expr(Expr {
1455             kind: ExprKind::If(_, _, _),
1456             ..
1457         })
1458     )
1459 }
1460
1461 // Finds the attribute with the given name, if any
1462 pub fn attr_by_name<'a>(attrs: &'a [Attribute], name: &'_ str) -> Option<&'a Attribute> {
1463     attrs
1464         .iter()
1465         .find(|attr| attr.ident().map_or(false, |ident| ident.as_str() == name))
1466 }
1467
1468 // Finds the `#[must_use]` attribute, if any
1469 pub fn must_use_attr(attrs: &[Attribute]) -> Option<&Attribute> {
1470     attr_by_name(attrs, "must_use")
1471 }
1472
1473 // Returns whether the type has #[must_use] attribute
1474 pub fn is_must_use_ty<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
1475     match ty.kind() {
1476         ty::Adt(ref adt, _) => must_use_attr(&cx.tcx.get_attrs(adt.did)).is_some(),
1477         ty::Foreign(ref did) => must_use_attr(&cx.tcx.get_attrs(*did)).is_some(),
1478         ty::Slice(ref ty)
1479         | ty::Array(ref ty, _)
1480         | ty::RawPtr(ty::TypeAndMut { ref ty, .. })
1481         | ty::Ref(_, ref ty, _) => {
1482             // for the Array case we don't need to care for the len == 0 case
1483             // because we don't want to lint functions returning empty arrays
1484             is_must_use_ty(cx, *ty)
1485         },
1486         ty::Tuple(ref substs) => substs.types().any(|ty| is_must_use_ty(cx, ty)),
1487         ty::Opaque(ref def_id, _) => {
1488             for (predicate, _) in cx.tcx.explicit_item_bounds(*def_id) {
1489                 if let ty::PredicateKind::Trait(trait_predicate, _) = predicate.kind().skip_binder() {
1490                     if must_use_attr(&cx.tcx.get_attrs(trait_predicate.trait_ref.def_id)).is_some() {
1491                         return true;
1492                     }
1493                 }
1494             }
1495             false
1496         },
1497         ty::Dynamic(binder, _) => {
1498             for predicate in binder.iter() {
1499                 if let ty::ExistentialPredicate::Trait(ref trait_ref) = predicate.skip_binder() {
1500                     if must_use_attr(&cx.tcx.get_attrs(trait_ref.def_id)).is_some() {
1501                         return true;
1502                     }
1503                 }
1504             }
1505             false
1506         },
1507         _ => false,
1508     }
1509 }
1510
1511 // check if expr is calling method or function with #[must_use] attribute
1512 pub fn is_must_use_func_call(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1513     let did = match expr.kind {
1514         ExprKind::Call(ref path, _) => if_chain! {
1515             if let ExprKind::Path(ref qpath) = path.kind;
1516             if let def::Res::Def(_, did) = cx.qpath_res(qpath, path.hir_id);
1517             then {
1518                 Some(did)
1519             } else {
1520                 None
1521             }
1522         },
1523         ExprKind::MethodCall(_, _, _, _) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1524         _ => None,
1525     };
1526
1527     did.map_or(false, |did| must_use_attr(&cx.tcx.get_attrs(did)).is_some())
1528 }
1529
1530 pub fn is_no_std_crate(krate: &Crate<'_>) -> bool {
1531     krate.item.attrs.iter().any(|attr| {
1532         if let ast::AttrKind::Normal(ref attr, _) = attr.kind {
1533             attr.path == sym::no_std
1534         } else {
1535             false
1536         }
1537     })
1538 }
1539
1540 /// Check if parent of a hir node is a trait implementation block.
1541 /// For example, `f` in
1542 /// ```rust,ignore
1543 /// impl Trait for S {
1544 ///     fn f() {}
1545 /// }
1546 /// ```
1547 pub fn is_trait_impl_item(cx: &LateContext<'_>, hir_id: HirId) -> bool {
1548     if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
1549         matches!(item.kind, ItemKind::Impl(hir::Impl { of_trait: Some(_), .. }))
1550     } else {
1551         false
1552     }
1553 }
1554
1555 /// Check if it's even possible to satisfy the `where` clause for the item.
1556 ///
1557 /// `trivial_bounds` feature allows functions with unsatisfiable bounds, for example:
1558 ///
1559 /// ```ignore
1560 /// fn foo() where i32: Iterator {
1561 ///     for _ in 2i32 {}
1562 /// }
1563 /// ```
1564 pub fn fn_has_unsatisfiable_preds(cx: &LateContext<'_>, did: DefId) -> bool {
1565     use rustc_trait_selection::traits;
1566     let predicates =
1567         cx.tcx
1568             .predicates_of(did)
1569             .predicates
1570             .iter()
1571             .filter_map(|(p, _)| if p.is_global() { Some(*p) } else { None });
1572     traits::impossible_predicates(
1573         cx.tcx,
1574         traits::elaborate_predicates(cx.tcx, predicates)
1575             .map(|o| o.predicate)
1576             .collect::<Vec<_>>(),
1577     )
1578 }
1579
1580 /// Returns the `DefId` of the callee if the given expression is a function or method call.
1581 pub fn fn_def_id(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<DefId> {
1582     match &expr.kind {
1583         ExprKind::MethodCall(..) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1584         ExprKind::Call(
1585             Expr {
1586                 kind: ExprKind::Path(qpath),
1587                 hir_id: path_hir_id,
1588                 ..
1589             },
1590             ..,
1591         ) => cx.typeck_results().qpath_res(qpath, *path_hir_id).opt_def_id(),
1592         _ => None,
1593     }
1594 }
1595
1596 pub fn run_lints(cx: &LateContext<'_>, lints: &[&'static Lint], id: HirId) -> bool {
1597     lints.iter().any(|lint| {
1598         matches!(
1599             cx.tcx.lint_level_at_node(lint, id),
1600             (Level::Forbid | Level::Deny | Level::Warn, _)
1601         )
1602     })
1603 }
1604
1605 /// Returns true iff the given type is a primitive (a bool or char, any integer or floating-point
1606 /// number type, a str, or an array, slice, or tuple of those types).
1607 pub fn is_recursively_primitive_type(ty: Ty<'_>) -> bool {
1608     match ty.kind() {
1609         ty::Bool | ty::Char | ty::Int(_) | ty::Uint(_) | ty::Float(_) | ty::Str => true,
1610         ty::Ref(_, inner, _) if *inner.kind() == ty::Str => true,
1611         ty::Array(inner_type, _) | ty::Slice(inner_type) => is_recursively_primitive_type(inner_type),
1612         ty::Tuple(inner_types) => inner_types.types().all(is_recursively_primitive_type),
1613         _ => false,
1614     }
1615 }
1616
1617 /// Returns Option<String> where String is a textual representation of the type encapsulated in the
1618 /// slice iff the given expression is a slice of primitives (as defined in the
1619 /// `is_recursively_primitive_type` function) and None otherwise.
1620 pub fn is_slice_of_primitives(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<String> {
1621     let expr_type = cx.typeck_results().expr_ty_adjusted(expr);
1622     let expr_kind = expr_type.kind();
1623     let is_primitive = match expr_kind {
1624         ty::Slice(element_type) => is_recursively_primitive_type(element_type),
1625         ty::Ref(_, inner_ty, _) if matches!(inner_ty.kind(), &ty::Slice(_)) => {
1626             if let ty::Slice(element_type) = inner_ty.kind() {
1627                 is_recursively_primitive_type(element_type)
1628             } else {
1629                 unreachable!()
1630             }
1631         },
1632         _ => false,
1633     };
1634
1635     if is_primitive {
1636         // if we have wrappers like Array, Slice or Tuple, print these
1637         // and get the type enclosed in the slice ref
1638         match expr_type.peel_refs().walk().nth(1).unwrap().expect_ty().kind() {
1639             ty::Slice(..) => return Some("slice".into()),
1640             ty::Array(..) => return Some("array".into()),
1641             ty::Tuple(..) => return Some("tuple".into()),
1642             _ => {
1643                 // is_recursively_primitive_type() should have taken care
1644                 // of the rest and we can rely on the type that is found
1645                 let refs_peeled = expr_type.peel_refs();
1646                 return Some(refs_peeled.walk().last().unwrap().to_string());
1647             },
1648         }
1649     }
1650     None
1651 }
1652
1653 /// returns list of all pairs (a, b) from `exprs` such that `eq(a, b)`
1654 /// `hash` must be comformed with `eq`
1655 pub fn search_same<T, Hash, Eq>(exprs: &[T], hash: Hash, eq: Eq) -> Vec<(&T, &T)>
1656 where
1657     Hash: Fn(&T) -> u64,
1658     Eq: Fn(&T, &T) -> bool,
1659 {
1660     if exprs.len() == 2 && eq(&exprs[0], &exprs[1]) {
1661         return vec![(&exprs[0], &exprs[1])];
1662     }
1663
1664     let mut match_expr_list: Vec<(&T, &T)> = Vec::new();
1665
1666     let mut map: FxHashMap<_, Vec<&_>> =
1667         FxHashMap::with_capacity_and_hasher(exprs.len(), BuildHasherDefault::default());
1668
1669     for expr in exprs {
1670         match map.entry(hash(expr)) {
1671             Entry::Occupied(mut o) => {
1672                 for o in o.get() {
1673                     if eq(o, expr) {
1674                         match_expr_list.push((o, expr));
1675                     }
1676                 }
1677                 o.get_mut().push(expr);
1678             },
1679             Entry::Vacant(v) => {
1680                 v.insert(vec![expr]);
1681             },
1682         }
1683     }
1684
1685     match_expr_list
1686 }
1687
1688 /// Peels off all references on the pattern. Returns the underlying pattern and the number of
1689 /// references removed.
1690 pub fn peel_hir_pat_refs(pat: &'a Pat<'a>) -> (&'a Pat<'a>, usize) {
1691     fn peel(pat: &'a Pat<'a>, count: usize) -> (&'a Pat<'a>, usize) {
1692         if let PatKind::Ref(pat, _) = pat.kind {
1693             peel(pat, count + 1)
1694         } else {
1695             (pat, count)
1696         }
1697     }
1698     peel(pat, 0)
1699 }
1700
1701 /// Peels off up to the given number of references on the expression. Returns the underlying
1702 /// expression and the number of references removed.
1703 pub fn peel_n_hir_expr_refs(expr: &'a Expr<'a>, count: usize) -> (&'a Expr<'a>, usize) {
1704     fn f(expr: &'a Expr<'a>, count: usize, target: usize) -> (&'a Expr<'a>, usize) {
1705         match expr.kind {
1706             ExprKind::AddrOf(_, _, expr) if count != target => f(expr, count + 1, target),
1707             _ => (expr, count),
1708         }
1709     }
1710     f(expr, 0, count)
1711 }
1712
1713 /// Peels off all references on the expression. Returns the underlying expression and the number of
1714 /// references removed.
1715 pub fn peel_hir_expr_refs(expr: &'a Expr<'a>) -> (&'a Expr<'a>, usize) {
1716     fn f(expr: &'a Expr<'a>, count: usize) -> (&'a Expr<'a>, usize) {
1717         match expr.kind {
1718             ExprKind::AddrOf(BorrowKind::Ref, _, expr) => f(expr, count + 1),
1719             _ => (expr, count),
1720         }
1721     }
1722     f(expr, 0)
1723 }
1724
1725 /// Peels off all references on the type. Returns the underlying type and the number of references
1726 /// removed.
1727 pub fn peel_mid_ty_refs(ty: Ty<'_>) -> (Ty<'_>, usize) {
1728     fn peel(ty: Ty<'_>, count: usize) -> (Ty<'_>, usize) {
1729         if let ty::Ref(_, ty, _) = ty.kind() {
1730             peel(ty, count + 1)
1731         } else {
1732             (ty, count)
1733         }
1734     }
1735     peel(ty, 0)
1736 }
1737
1738 /// Peels off all references on the type.Returns the underlying type, the number of references
1739 /// removed, and whether the pointer is ultimately mutable or not.
1740 pub fn peel_mid_ty_refs_is_mutable(ty: Ty<'_>) -> (Ty<'_>, usize, Mutability) {
1741     fn f(ty: Ty<'_>, count: usize, mutability: Mutability) -> (Ty<'_>, usize, Mutability) {
1742         match ty.kind() {
1743             ty::Ref(_, ty, Mutability::Mut) => f(ty, count + 1, mutability),
1744             ty::Ref(_, ty, Mutability::Not) => f(ty, count + 1, Mutability::Not),
1745             _ => (ty, count, mutability),
1746         }
1747     }
1748     f(ty, 0, Mutability::Mut)
1749 }
1750
1751 #[macro_export]
1752 macro_rules! unwrap_cargo_metadata {
1753     ($cx: ident, $lint: ident, $deps: expr) => {{
1754         let mut command = cargo_metadata::MetadataCommand::new();
1755         if !$deps {
1756             command.no_deps();
1757         }
1758
1759         match command.exec() {
1760             Ok(metadata) => metadata,
1761             Err(err) => {
1762                 span_lint($cx, $lint, DUMMY_SP, &format!("could not read cargo metadata: {}", err));
1763                 return;
1764             },
1765         }
1766     }};
1767 }
1768
1769 pub fn is_hir_ty_cfg_dependant(cx: &LateContext<'_>, ty: &hir::Ty<'_>) -> bool {
1770     if_chain! {
1771         if let TyKind::Path(QPath::Resolved(_, path)) = ty.kind;
1772         if let Res::Def(_, def_id) = path.res;
1773         then {
1774             cx.tcx.has_attr(def_id, sym::cfg) || cx.tcx.has_attr(def_id, sym::cfg_attr)
1775         } else {
1776             false
1777         }
1778     }
1779 }
1780
1781 /// Check if the resolution of a given path is an `Ok` variant of `Result`.
1782 pub fn is_ok_ctor(cx: &LateContext<'_>, res: Res) -> bool {
1783     if let Some(ok_id) = cx.tcx.lang_items().result_ok_variant() {
1784         if let Res::Def(DefKind::Ctor(CtorOf::Variant, CtorKind::Fn), id) = res {
1785             if let Some(variant_id) = cx.tcx.parent(id) {
1786                 return variant_id == ok_id;
1787             }
1788         }
1789     }
1790     false
1791 }
1792
1793 /// Check if the resolution of a given path is a `Some` variant of `Option`.
1794 pub fn is_some_ctor(cx: &LateContext<'_>, res: Res) -> bool {
1795     if let Some(some_id) = cx.tcx.lang_items().option_some_variant() {
1796         if let Res::Def(DefKind::Ctor(CtorOf::Variant, CtorKind::Fn), id) = res {
1797             if let Some(variant_id) = cx.tcx.parent(id) {
1798                 return variant_id == some_id;
1799             }
1800         }
1801     }
1802     false
1803 }
1804
1805 #[cfg(test)]
1806 mod test {
1807     use super::{reindent_multiline, without_block_comments};
1808
1809     #[test]
1810     fn test_reindent_multiline_single_line() {
1811         assert_eq!("", reindent_multiline("".into(), false, None));
1812         assert_eq!("...", reindent_multiline("...".into(), false, None));
1813         assert_eq!("...", reindent_multiline("    ...".into(), false, None));
1814         assert_eq!("...", reindent_multiline("\t...".into(), false, None));
1815         assert_eq!("...", reindent_multiline("\t\t...".into(), false, None));
1816     }
1817
1818     #[test]
1819     #[rustfmt::skip]
1820     fn test_reindent_multiline_block() {
1821         assert_eq!("\
1822     if x {
1823         y
1824     } else {
1825         z
1826     }", reindent_multiline("    if x {
1827             y
1828         } else {
1829             z
1830         }".into(), false, None));
1831         assert_eq!("\
1832     if x {
1833     \ty
1834     } else {
1835     \tz
1836     }", reindent_multiline("    if x {
1837         \ty
1838         } else {
1839         \tz
1840         }".into(), false, None));
1841     }
1842
1843     #[test]
1844     #[rustfmt::skip]
1845     fn test_reindent_multiline_empty_line() {
1846         assert_eq!("\
1847     if x {
1848         y
1849
1850     } else {
1851         z
1852     }", reindent_multiline("    if x {
1853             y
1854
1855         } else {
1856             z
1857         }".into(), false, None));
1858     }
1859
1860     #[test]
1861     #[rustfmt::skip]
1862     fn test_reindent_multiline_lines_deeper() {
1863         assert_eq!("\
1864         if x {
1865             y
1866         } else {
1867             z
1868         }", reindent_multiline("\
1869     if x {
1870         y
1871     } else {
1872         z
1873     }".into(), true, Some(8)));
1874     }
1875
1876     #[test]
1877     fn test_without_block_comments_lines_without_block_comments() {
1878         let result = without_block_comments(vec!["/*", "", "*/"]);
1879         println!("result: {:?}", result);
1880         assert!(result.is_empty());
1881
1882         let result = without_block_comments(vec!["", "/*", "", "*/", "#[crate_type = \"lib\"]", "/*", "", "*/", ""]);
1883         assert_eq!(result, vec!["", "#[crate_type = \"lib\"]", ""]);
1884
1885         let result = without_block_comments(vec!["/* rust", "", "*/"]);
1886         assert!(result.is_empty());
1887
1888         let result = without_block_comments(vec!["/* one-line comment */"]);
1889         assert!(result.is_empty());
1890
1891         let result = without_block_comments(vec!["/* nested", "/* multi-line", "comment", "*/", "test", "*/"]);
1892         assert!(result.is_empty());
1893
1894         let result = without_block_comments(vec!["/* nested /* inline /* comment */ test */ */"]);
1895         assert!(result.is_empty());
1896
1897         let result = without_block_comments(vec!["foo", "bar", "baz"]);
1898         assert_eq!(result, vec!["foo", "bar", "baz"]);
1899     }
1900 }