X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2Fsrc%2Freturns.rs;h=c3afa156017d21dce3803aa2c0f61d6db568e434;hb=e5a5b0a0774625eebbe7b29c67b49dc6431544d1;hp=116ea8c899bc23ded861dd279ce6122c22f7ad7d;hpb=adc1df11b4d8ef005363585dc4d3ee2a03dfed08;p=rust.git diff --git a/clippy_lints/src/returns.rs b/clippy_lints/src/returns.rs index 116ea8c899b..c3afa156017 100644 --- a/clippy_lints/src/returns.rs +++ b/clippy_lints/src/returns.rs @@ -1,7 +1,8 @@ use if_chain::if_chain; +use rustc::declare_lint_pass; use rustc::lint::{in_external_macro, EarlyContext, EarlyLintPass, LintArray, LintContext, LintPass}; -use rustc::{declare_lint_pass, declare_tool_lint}; use rustc_errors::Applicability; +use rustc_session::declare_tool_lint; use syntax::ast; use syntax::source_map::Span; use syntax::visit::FnKind; @@ -95,7 +96,7 @@ impl Return { // Check the final stmt or expr in a block for unnecessary return. fn check_block_return(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) { if let Some(stmt) = block.stmts.last() { - match stmt.node { + match stmt.kind { ast::StmtKind::Expr(ref expr) | ast::StmtKind::Semi(ref expr) => { self.check_final_expr(cx, expr, Some(stmt.span), RetReplacement::Empty); }, @@ -112,12 +113,12 @@ fn check_final_expr( span: Option, replacement: RetReplacement, ) { - match expr.node { + match expr.kind { // simple return is always "bad" ast::ExprKind::Ret(ref inner) => { // allow `#[cfg(a)] return a; #[cfg(b)] return b;` if !expr.attrs.iter().any(attr_is_cfg) { - self.emit_return_lint( + Self::emit_return_lint( cx, span.expect("`else return` is not possible"), inner.as_ref().map(|i| i.span), @@ -146,13 +147,7 @@ fn check_final_expr( } } - fn emit_return_lint( - &mut self, - cx: &EarlyContext<'_>, - ret_span: Span, - inner_span: Option, - replacement: RetReplacement, - ) { + fn emit_return_lint(cx: &EarlyContext<'_>, ret_span: Span, inner_span: Option, replacement: RetReplacement) { match inner_span { Some(inner_span) => { if in_external_macro(cx.sess(), inner_span) || inner_span.from_expansion() { @@ -191,21 +186,21 @@ fn emit_return_lint( } // Check for "let x = EXPR; x" - fn check_let_return(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) { + fn check_let_return(cx: &EarlyContext<'_>, block: &ast::Block) { let mut it = block.stmts.iter(); // we need both a let-binding stmt and an expr if_chain! { if let Some(retexpr) = it.next_back(); - if let ast::StmtKind::Expr(ref retexpr) = retexpr.node; + if let ast::StmtKind::Expr(ref retexpr) = retexpr.kind; if let Some(stmt) = it.next_back(); - if let ast::StmtKind::Local(ref local) = stmt.node; + if let ast::StmtKind::Local(ref local) = stmt.kind; // don't lint in the presence of type inference if local.ty.is_none(); if local.attrs.is_empty(); if let Some(ref initexpr) = local.init; - if let ast::PatKind::Ident(_, ident, _) = local.pat.node; - if let ast::ExprKind::Path(_, ref path) = retexpr.node; + if let ast::PatKind::Ident(_, ident, _) = local.pat.kind; + if let ast::ExprKind::Path(_, ref path) = retexpr.kind; if match_path_ast(path, &[&*ident.name.as_str()]); if !in_external_macro(cx.sess(), initexpr.span); if !in_external_macro(cx.sess(), retexpr.span); @@ -246,7 +241,7 @@ fn check_fn(&mut self, cx: &EarlyContext<'_>, kind: FnKind<'_>, decl: &ast::FnDe } if_chain! { if let ast::FunctionRetTy::Ty(ref ty) = decl.output; - if let ast::TyKind::Tup(ref vals) = ty.node; + if let ast::TyKind::Tup(ref vals) = ty.kind; if vals.is_empty() && !ty.span.from_expansion() && get_def(span) == get_def(ty.span); then { let (rspan, appl) = if let Ok(fn_source) = @@ -275,10 +270,10 @@ fn check_fn(&mut self, cx: &EarlyContext<'_>, kind: FnKind<'_>, decl: &ast::FnDe } fn check_block(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) { - self.check_let_return(cx, block); + Self::check_let_return(cx, block); if_chain! { if let Some(ref stmt) = block.stmts.last(); - if let ast::StmtKind::Expr(ref expr) = stmt.node; + if let ast::StmtKind::Expr(ref expr) = stmt.kind; if is_unit_expr(expr) && !stmt.span.from_expansion(); then { let sp = expr.span; @@ -295,7 +290,7 @@ fn check_block(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) { } fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) { - match e.node { + match e.kind { ast::ExprKind::Ret(Some(ref expr)) | ast::ExprKind::Break(_, Some(ref expr)) => { if is_unit_expr(expr) && !expr.span.from_expansion() { span_lint_and_then(cx, UNUSED_UNIT, expr.span, "unneeded `()`", |db| { @@ -318,6 +313,7 @@ fn attr_is_cfg(attr: &ast::Attribute) -> bool { } // get the def site +#[must_use] fn get_def(span: Span) -> Option { if span.from_expansion() { Some(span.ctxt().outer_expn_data().def_site) @@ -328,7 +324,7 @@ fn get_def(span: Span) -> Option { // is this expr a `()` unit? fn is_unit_expr(expr: &ast::Expr) -> bool { - if let ast::ExprKind::Tup(ref vals) = expr.node { + if let ast::ExprKind::Tup(ref vals) = expr.kind { vals.is_empty() } else { false