X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2Fsrc%2Fdouble_parens.rs;h=7f2ff8b9b26f62bb42252aca0293c3e49e3ca410;hb=2ff568d746e4641b992c0b74bea046e43a637997;hp=ffaf93bd7a1339c2afb7e07ec0928e785d07d075;hpb=a16edf84ce17095ebeebccb5662441ef1c824905;p=rust.git diff --git a/clippy_lints/src/double_parens.rs b/clippy_lints/src/double_parens.rs index ffaf93bd7a1..7f2ff8b9b26 100644 --- a/clippy_lints/src/double_parens.rs +++ b/clippy_lints/src/double_parens.rs @@ -1,70 +1,72 @@ -// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. +use crate::utils::span_lint; +use rustc_ast::ast::{Expr, ExprKind}; +use rustc_lint::{EarlyContext, EarlyLintPass}; +use rustc_session::{declare_lint_pass, declare_tool_lint}; - -use crate::syntax::ast::*; -use crate::rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass}; -use crate::rustc::{declare_tool_lint, lint_array}; -use crate::utils::{in_macro, span_lint}; - - -/// **What it does:** Checks for unnecessary double parentheses. -/// -/// **Why is this bad?** This makes code harder to read and might indicate a -/// mistake. -/// -/// **Known problems:** None. -/// -/// **Example:** -/// ```rust -/// ((0)) -/// foo((0)) -/// ((1, 2)) -/// ``` declare_clippy_lint! { + /// **What it does:** Checks for unnecessary double parentheses. + /// + /// **Why is this bad?** This makes code harder to read and might indicate a + /// mistake. + /// + /// **Known problems:** None. + /// + /// **Example:** + /// ```rust + /// # fn foo(bar: usize) {} + /// ((0)); + /// foo((0)); + /// ((1, 2)); + /// ``` pub DOUBLE_PARENS, complexity, "Warn on unnecessary double parentheses" } -#[derive(Copy, Clone)] -pub struct DoubleParens; - -impl LintPass for DoubleParens { - fn get_lints(&self) -> LintArray { - lint_array!(DOUBLE_PARENS) - } -} +declare_lint_pass!(DoubleParens => [DOUBLE_PARENS]); impl EarlyLintPass for DoubleParens { fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) { - if in_macro(expr.span) { + if expr.span.from_expansion() { return; } - match expr.node { - ExprKind::Paren(ref in_paren) => match in_paren.node { + match expr.kind { + ExprKind::Paren(ref in_paren) => match in_paren.kind { ExprKind::Paren(_) | ExprKind::Tup(_) => { - span_lint(cx, DOUBLE_PARENS, expr.span, "Consider removing unnecessary double parentheses"); + span_lint( + cx, + DOUBLE_PARENS, + expr.span, + "Consider removing unnecessary double parentheses", + ); }, _ => {}, }, - ExprKind::Call(_, ref params) => if params.len() == 1 { - let param = ¶ms[0]; - if let ExprKind::Paren(_) = param.node { - span_lint(cx, DOUBLE_PARENS, param.span, "Consider removing unnecessary double parentheses"); + ExprKind::Call(_, ref params) => { + if params.len() == 1 { + let param = ¶ms[0]; + if let ExprKind::Paren(_) = param.kind { + span_lint( + cx, + DOUBLE_PARENS, + param.span, + "Consider removing unnecessary double parentheses", + ); + } } }, - ExprKind::MethodCall(_, ref params) => if params.len() == 2 { - let param = ¶ms[1]; - if let ExprKind::Paren(_) = param.node { - span_lint(cx, DOUBLE_PARENS, param.span, "Consider removing unnecessary double parentheses"); + ExprKind::MethodCall(_, ref params) => { + if params.len() == 2 { + let param = ¶ms[1]; + if let ExprKind::Paren(_) = param.kind { + span_lint( + cx, + DOUBLE_PARENS, + param.span, + "Consider removing unnecessary double parentheses", + ); + } } }, _ => {},