2016-10-02 15:48:52 -05:00
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::hir::*;
|
2016-10-02 16:38:31 -05:00
|
|
|
use utils::{paths, method_chain_args, span_help_and_lint, match_type, snippet};
|
2016-10-02 15:48:52 -05:00
|
|
|
|
|
|
|
/// **What it does:*** Checks for unnecessary `ok()` in if let.
|
|
|
|
///
|
2016-10-02 16:15:24 -05:00
|
|
|
/// **Why is this bad?** Calling `ok()` in if let is unnecessary, instead match on `Ok(pat)`
|
2016-10-02 15:48:52 -05:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rustc
|
|
|
|
/// for result in iter {
|
|
|
|
/// if let Some(bench) = try!(result).parse().ok() {
|
|
|
|
/// vec.push(bench)
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub IF_LET_SOME_RESULT,
|
|
|
|
Warn,
|
2016-10-02 16:15:24 -05:00
|
|
|
"usage of `ok()` in `if let Some(pat)` statements is unnecessary, match on `Ok(pat)` instead"
|
2016-10-02 15:48:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
2016-10-06 10:50:11 -05:00
|
|
|
pub struct Pass;
|
2016-10-02 15:48:52 -05:00
|
|
|
|
2016-10-06 10:50:11 -05:00
|
|
|
impl LintPass for Pass {
|
2016-10-02 15:48:52 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(IF_LET_SOME_RESULT)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-06 10:50:11 -05:00
|
|
|
impl LateLintPass for Pass {
|
2016-10-02 15:48:52 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
|
|
|
if_let_chain! {[ //begin checking variables
|
|
|
|
let ExprMatch(ref op, ref body, ref source) = expr.node, //test if expr is a match
|
2016-10-02 15:53:10 -05:00
|
|
|
let MatchSource::IfLetDesugar { .. } = *source, //test if it is an If Let
|
2016-10-02 15:48:52 -05:00
|
|
|
let ExprMethodCall(_, _, ref result_types) = op.node, //check is expr.ok() has type Result<T,E>.ok()
|
|
|
|
let PatKind::TupleStruct(ref x, ref y, _) = body[0].pats[0].node, //get operation
|
2016-10-29 11:56:12 -05:00
|
|
|
method_chain_args(op, &["ok"]).is_some() //test to see if using ok() methoduse std::marker::Sized;
|
2016-10-02 15:48:52 -05:00
|
|
|
|
|
|
|
], {
|
|
|
|
let is_result_type = match_type(cx, cx.tcx.expr_ty(&result_types[0]), &paths::RESULT);
|
2016-10-02 16:38:31 -05:00
|
|
|
let some_expr_string = snippet(cx, y[0].span, "");
|
2016-10-02 15:48:52 -05:00
|
|
|
if print::path_to_string(x) == "Some" && is_result_type {
|
|
|
|
span_help_and_lint(cx, IF_LET_SOME_RESULT, expr.span,
|
|
|
|
"Matching on `Some` with `ok()` is redundant",
|
2016-10-29 11:56:12 -05:00
|
|
|
&format!("Consider matching on `Ok({})` and removing the call to `ok` instead", some_expr_string));
|
2016-10-02 15:48:52 -05:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
}
|