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