]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/vec.rs
Merge branch 'macro-use' into HEAD
[rust.git] / clippy_lints / src / vec.rs
index e1c226466f9522ff5d6eed7fa86c2e5fc160d1fd..a58d73f86daa067d5d14e2a84d0f493844a4060f 100644 (file)
@@ -1,10 +1,11 @@
 use rustc::hir::*;
 use rustc::lint::*;
+use rustc::{declare_lint, lint_array};
+use if_chain::if_chain;
 use rustc::ty::{self, Ty};
-use rustc::ty::subst::Substs;
-use rustc_const_eval::ConstContext;
 use syntax::codemap::Span;
-use utils::{higher, is_copy, snippet, span_lint_and_sugg};
+use crate::utils::{higher, is_copy, snippet, span_lint_and_sugg};
+use crate::consts::constant;
 
 /// **What it does:** Checks for usage of `&vec![..]` when using `&[..]` would
 /// be possible.
@@ -17,9 +18,9 @@
 /// ```rust,ignore
 /// foo(&vec![1, 2])
 /// ```
-declare_lint! {
+declare_clippy_lint! {
     pub USELESS_VEC,
-    Warn,
+    perf,
     "useless `vec!`"
 }
 
@@ -36,9 +37,9 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
         // search for `&vec![_]` expressions where the adjusted type is `&[_]`
         if_chain! {
-            if let ty::TyRef(_, ref ty) = cx.tables.expr_ty_adjusted(expr).sty;
-            if let ty::TySlice(..) = ty.ty.sty;
-            if let ExprAddrOf(_, ref addressee) = expr.node;
+            if let ty::TyRef(_, ty, _) = cx.tables.expr_ty_adjusted(expr).sty;
+            if let ty::TySlice(..) = ty.sty;
+            if let ExprKind::AddrOf(_, ref addressee) = expr.node;
             if let Some(vec_args) = higher::vec_macro(cx, addressee);
             then {
                 check_vec_macro(cx, &vec_args, expr.span);
@@ -67,13 +68,7 @@ fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
 fn check_vec_macro<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, vec_args: &higher::VecArgs<'tcx>, span: Span) {
     let snippet = match *vec_args {
         higher::VecArgs::Repeat(elem, len) => {
-            let parent_item = cx.tcx.hir.get_parent(len.id);
-            let parent_def_id = cx.tcx.hir.local_def_id(parent_item);
-            let substs = Substs::identity_for_item(cx.tcx, parent_def_id);
-            if ConstContext::new(cx.tcx, cx.param_env.and(substs), cx.tables)
-                .eval(len)
-                .is_ok()
-            {
+            if constant(cx, cx.tables, len).is_some() {
                 format!("&[{}; {}]", snippet(cx, elem.span, "elem"), snippet(cx, len.span, "len"))
             } else {
                 return;