2018-10-06 11:18:06 -05:00
|
|
|
// 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass, in_external_macro, LintContext};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-07-19 03:00:54 -05:00
|
|
|
use if_chain::if_chain;
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::syntax::ast;
|
|
|
|
use crate::syntax::source_map::Span;
|
|
|
|
use crate::syntax::visit::FnKind;
|
2018-09-15 11:14:08 -05:00
|
|
|
use crate::rustc_errors::Applicability;
|
2015-08-11 14:47:34 -05:00
|
|
|
|
2018-07-24 01:55:38 -05:00
|
|
|
use crate::utils::{in_macro, match_path_ast, snippet_opt, span_lint_and_then, span_note_and_lint};
|
2015-08-11 14:47:34 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for return statements at the end of a block.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Removing the `return` and semicolon will make the code
|
|
|
|
/// more rusty.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2017-08-12 17:14:28 -05:00
|
|
|
/// **Known problems:** If the computation returning the value borrows a local
|
|
|
|
/// variable, removing the `return` may run afoul of the borrow checker.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// fn foo(x: usize) { return x; }
|
|
|
|
/// ```
|
2018-08-11 17:16:03 -05:00
|
|
|
/// simplify to
|
|
|
|
/// ```rust
|
|
|
|
/// fn foo(x: usize) { x }
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub NEEDLESS_RETURN,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-02-05 17:13:29 -06:00
|
|
|
"using a return statement like `return expr;` where an expression would suffice"
|
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **What it does:** Checks for `let`-bindings, which are subsequently
|
|
|
|
/// returned.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** It is just extraneous code. Remove it to make your code
|
|
|
|
/// more rusty.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-08 06:37:39 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2018-08-11 17:16:03 -05:00
|
|
|
/// fn foo() -> String {
|
|
|
|
/// let x = String::new();
|
|
|
|
/// x
|
|
|
|
///}
|
|
|
|
/// ```
|
|
|
|
/// instead, use
|
|
|
|
/// ```
|
|
|
|
/// fn foo() -> String {
|
|
|
|
/// String::new()
|
|
|
|
///}
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub LET_AND_RETURN,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-02-05 17:13:29 -06:00
|
|
|
"creating a let-binding and then immediately returning it like `let x = expr; x` at \
|
|
|
|
the end of a block"
|
|
|
|
}
|
2015-08-11 14:47:34 -05:00
|
|
|
|
2015-08-21 10:11:34 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-08-11 14:47:34 -05:00
|
|
|
pub struct ReturnPass;
|
|
|
|
|
|
|
|
impl ReturnPass {
|
|
|
|
// Check the final stmt or expr in a block for unnecessary return.
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_block_return(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) {
|
2016-06-28 08:54:23 -05:00
|
|
|
if let Some(stmt) = block.stmts.last() {
|
|
|
|
match stmt.node {
|
2017-09-05 04:33:04 -05:00
|
|
|
ast::StmtKind::Expr(ref expr) | ast::StmtKind::Semi(ref expr) => {
|
2016-07-14 11:32:09 -05:00
|
|
|
self.check_final_expr(cx, expr, Some(stmt.span));
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-06-28 08:54:23 -05:00
|
|
|
_ => (),
|
2015-08-11 14:47:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check a the final expression in a block if it's a return.
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_final_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr, span: Option<Span>) {
|
2015-08-11 14:47:34 -05:00
|
|
|
match expr.node {
|
|
|
|
// simple return is always "bad"
|
2016-11-16 14:57:56 -06:00
|
|
|
ast::ExprKind::Ret(Some(ref inner)) => {
|
2016-11-19 05:10:04 -06:00
|
|
|
// allow `#[cfg(a)] return a; #[cfg(b)] return b;`
|
|
|
|
if !expr.attrs.iter().any(attr_is_cfg) {
|
|
|
|
self.emit_return_lint(cx, span.expect("`else return` is not possible"), inner.span);
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-08-11 14:47:34 -05:00
|
|
|
// a whole block? check it!
|
2018-05-17 04:21:15 -05:00
|
|
|
ast::ExprKind::Block(ref block, _) => {
|
2015-08-11 14:47:34 -05:00
|
|
|
self.check_block_return(cx, block);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-08-11 14:47:34 -05:00
|
|
|
// an if/if let expr, check both exprs
|
|
|
|
// note, if without else is going to be a type checking error anyways
|
|
|
|
// (except for unit type functions) so we don't match it
|
2016-11-16 14:57:56 -06:00
|
|
|
ast::ExprKind::If(_, ref ifblock, Some(ref elsexpr)) => {
|
2015-08-11 14:47:34 -05:00
|
|
|
self.check_block_return(cx, ifblock);
|
2016-07-14 11:32:09 -05:00
|
|
|
self.check_final_expr(cx, elsexpr, None);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-08-11 14:47:34 -05:00
|
|
|
// a match expr, check all arms
|
2017-09-05 04:33:04 -05:00
|
|
|
ast::ExprKind::Match(_, ref arms) => for arm in arms {
|
|
|
|
self.check_final_expr(cx, &arm.body, Some(arm.body.span));
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-04-14 13:14:03 -05:00
|
|
|
_ => (),
|
2015-08-11 14:47:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
fn emit_return_lint(&mut self, cx: &EarlyContext<'_>, ret_span: Span, inner_span: Span) {
|
2018-07-24 01:55:38 -05:00
|
|
|
if in_external_macro(cx.sess(), inner_span) || in_macro(inner_span) {
|
2016-01-03 22:26:12 -06:00
|
|
|
return;
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint_and_then(cx, NEEDLESS_RETURN, ret_span, "unneeded return statement", |db| {
|
|
|
|
if let Some(snippet) = snippet_opt(cx, inner_span) {
|
2018-09-15 11:14:08 -05:00
|
|
|
db.span_suggestion_with_applicability(
|
2018-09-18 10:07:54 -05:00
|
|
|
ret_span,
|
|
|
|
"remove `return` as shown",
|
|
|
|
snippet,
|
2018-09-18 12:01:17 -05:00
|
|
|
Applicability::MachineApplicable,
|
2018-09-18 10:07:54 -05:00
|
|
|
);
|
2017-08-09 02:30:56 -05:00
|
|
|
}
|
|
|
|
});
|
2015-08-11 14:47:34 -05:00
|
|
|
}
|
2015-08-11 15:06:30 -05:00
|
|
|
|
|
|
|
// Check for "let x = EXPR; x"
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_let_return(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) {
|
2016-06-28 08:54:23 -05:00
|
|
|
let mut it = block.stmts.iter();
|
|
|
|
|
2015-08-11 15:06:30 -05:00
|
|
|
// we need both a let-binding stmt and an expr
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
|
|
|
if let Some(retexpr) = it.next_back();
|
|
|
|
if let ast::StmtKind::Expr(ref retexpr) = retexpr.node;
|
|
|
|
if let Some(stmt) = it.next_back();
|
|
|
|
if let ast::StmtKind::Local(ref local) = stmt.node;
|
2017-05-11 09:32:06 -05:00
|
|
|
// don't lint in the presence of type inference
|
2017-10-23 14:18:02 -05:00
|
|
|
if local.ty.is_none();
|
|
|
|
if !local.attrs.iter().any(attr_is_cfg);
|
|
|
|
if let Some(ref initexpr) = local.init;
|
2018-04-07 00:22:23 -05:00
|
|
|
if let ast::PatKind::Ident(_, ident, _) = local.pat.node;
|
2017-10-23 14:18:02 -05:00
|
|
|
if let ast::ExprKind::Path(_, ref path) = retexpr.node;
|
2018-06-28 08:46:58 -05:00
|
|
|
if match_path_ast(path, &[&ident.as_str()]);
|
2018-07-24 01:55:38 -05:00
|
|
|
if !in_external_macro(cx.sess(), initexpr.span);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
span_note_and_lint(cx,
|
|
|
|
LET_AND_RETURN,
|
|
|
|
retexpr.span,
|
|
|
|
"returning the result of a let binding from a block. \
|
|
|
|
Consider returning the expression directly.",
|
|
|
|
initexpr.span,
|
|
|
|
"this expression can be directly returned");
|
|
|
|
}
|
|
|
|
}
|
2015-08-11 15:06:30 -05:00
|
|
|
}
|
2015-08-11 14:47:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LintPass for ReturnPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-08-11 15:06:30 -05:00
|
|
|
lint_array!(NEEDLESS_RETURN, LET_AND_RETURN)
|
2015-08-11 14:47:34 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 14:47:34 -05:00
|
|
|
|
2015-10-11 16:12:21 -05:00
|
|
|
impl EarlyLintPass for ReturnPass {
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_fn(&mut self, cx: &EarlyContext<'_>, kind: FnKind<'_>, _: &ast::FnDecl, _: Span, _: ast::NodeId) {
|
2016-11-16 14:57:56 -06:00
|
|
|
match kind {
|
2017-09-05 04:33:04 -05:00
|
|
|
FnKind::ItemFn(.., block) | FnKind::Method(.., block) => self.check_block_return(cx, block),
|
2017-01-14 22:16:02 -06:00
|
|
|
FnKind::Closure(body) => self.check_final_expr(cx, body, Some(body.span)),
|
2016-11-16 14:57:56 -06:00
|
|
|
}
|
2015-09-20 06:57:27 -05:00
|
|
|
}
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_block(&mut self, cx: &EarlyContext<'_>, block: &ast::Block) {
|
2015-08-11 15:06:30 -05:00
|
|
|
self.check_let_return(cx, block);
|
2015-08-11 14:47:34 -05:00
|
|
|
}
|
|
|
|
}
|
2016-11-19 19:15:40 -06:00
|
|
|
|
|
|
|
fn attr_is_cfg(attr: &ast::Attribute) -> bool {
|
2018-05-03 17:28:02 -05:00
|
|
|
attr.meta_item_list().is_some() && attr.name() == "cfg"
|
2016-11-19 19:15:40 -06:00
|
|
|
}
|