From ee7bad455b12f6c434e308d18f7128e86213163b Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Thu, 31 Jan 2019 07:11:22 +0100 Subject: [PATCH] Some renamings: s/ast_ty/hir_ty and s/StructField/hir::StructField I think in both cases the new names make the code more understandable. For `StructField` specifically because there's one in [`syntax::ast`][ast] and one in [`rustc::hir`][hir]. [ast]: https://doc.rust-lang.org/nightly/nightly-rustc/syntax/ast/struct.StructField.html [hir]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/hir/struct.StructField.html --- clippy_lints/src/types.rs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/clippy_lints/src/types.rs b/clippy_lints/src/types.rs index 4683ffb4c85..10be0c06d87 100644 --- a/clippy_lints/src/types.rs +++ b/clippy_lints/src/types.rs @@ -186,7 +186,7 @@ fn check_fn(&mut self, cx: &LateContext<'_, '_>, _: FnKind<'_>, decl: &FnDecl, _ check_fn_decl(cx, decl); } - fn check_struct_field(&mut self, cx: &LateContext<'_, '_>, field: &StructField) { + fn check_struct_field(&mut self, cx: &LateContext<'_, '_>, field: &hir::StructField) { check_ty(cx, &field.ty, false); } @@ -240,13 +240,13 @@ fn match_type_parameter(cx: &LateContext<'_, '_>, qpath: &QPath, path: &[&str]) /// /// The parameter `is_local` distinguishes the context of the type; types from /// local bindings should only be checked for the `BORROWED_BOX` lint. -fn check_ty(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool) { - if in_macro(ast_ty.span) { +fn check_ty(cx: &LateContext<'_, '_>, hir_ty: &hir::Ty, is_local: bool) { + if in_macro(hir_ty.span) { return; } - match ast_ty.node { + match hir_ty.node { TyKind::Path(ref qpath) if !is_local => { - let hir_id = cx.tcx.hir().node_to_hir_id(ast_ty.id); + let hir_id = cx.tcx.hir().node_to_hir_id(hir_ty.id); let def = cx.tables.qpath_def(qpath, hir_id); if let Some(def_id) = opt_def_id(def) { if Some(def_id) == cx.tcx.lang_items().owned_box() { @@ -254,7 +254,7 @@ fn check_ty(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool) { span_help_and_lint( cx, BOX_VEC, - ast_ty.span, + hir_ty.span, "you seem to be trying to use `Box>`. Consider using just `Vec`", "`Vec` is already on the heap, `Box>` makes an extra allocation.", ); @@ -288,7 +288,7 @@ fn check_ty(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool) { span_lint_and_sugg( cx, VEC_BOX, - ast_ty.span, + hir_ty.span, "`Vec` is already on the heap, the boxing is unnecessary.", "try", format!("Vec<{}>", boxed_type), @@ -302,7 +302,7 @@ fn check_ty(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool) { span_lint( cx, OPTION_OPTION, - ast_ty.span, + hir_ty.span, "consider using `Option` instead of `Option>` or a custom \ enum if you need to distinguish all 3 cases", ); @@ -312,7 +312,7 @@ enum if you need to distinguish all 3 cases", span_help_and_lint( cx, LINKEDLIST, - ast_ty.span, + hir_ty.span, "I see you're using a LinkedList! Perhaps you meant some other data structure?", "a VecDeque might work", ); @@ -360,7 +360,7 @@ enum if you need to distinguish all 3 cases", }, } }, - TyKind::Rptr(ref lt, ref mut_ty) => check_ty_rptr(cx, ast_ty, is_local, lt, mut_ty), + TyKind::Rptr(ref lt, ref mut_ty) => check_ty_rptr(cx, hir_ty, is_local, lt, mut_ty), // recurse TyKind::Slice(ref ty) | TyKind::Array(ref ty, _) | TyKind::Ptr(MutTy { ref ty, .. }) => { check_ty(cx, ty, is_local) @@ -374,7 +374,7 @@ enum if you need to distinguish all 3 cases", } } -fn check_ty_rptr(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool, lt: &Lifetime, mut_ty: &MutTy) { +fn check_ty_rptr(cx: &LateContext<'_, '_>, hir_ty: &hir::Ty, is_local: bool, lt: &Lifetime, mut_ty: &MutTy) { match mut_ty.ty.node { TyKind::Path(ref qpath) => { let hir_id = cx.tcx.hir().node_to_hir_id(mut_ty.ty.id); @@ -410,7 +410,7 @@ fn check_ty_rptr(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool, lt: span_lint_and_sugg( cx, BORROWED_BOX, - ast_ty.span, + hir_ty.span, "you seem to be trying to use `&Box`. Consider using just `&T`", "try", format!( @@ -1317,7 +1317,7 @@ fn check_fn( self.check_fndecl(cx, decl); } - fn check_struct_field(&mut self, cx: &LateContext<'a, 'tcx>, field: &'tcx StructField) { + fn check_struct_field(&mut self, cx: &LateContext<'a, 'tcx>, field: &'tcx hir::StructField) { // enum variants are also struct fields now self.check_type(cx, &field.ty); } -- 2.44.0