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