Skip to content

Commit 7b3074f

Browse files
committed
manual_unwrap_or / use consts::constant_simple helper
1 parent eba5886 commit 7b3074f

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

clippy_lints/src/manual_unwrap_or.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use crate::consts::constant_simple;
12
use crate::utils;
23
use if_chain::if_chain;
34
use rustc_errors::Applicability;
@@ -18,15 +19,17 @@ declare_clippy_lint! {
1819
///
1920
/// **Example:**
2021
/// ```rust
21-
/// match int_option {
22+
/// let foo: Option<i32> = None;
23+
/// match foo {
2224
/// Some(v) => v,
2325
/// None => 1,
24-
/// }
26+
/// };
2527
/// ```
2628
///
2729
/// Use instead:
2830
/// ```rust
29-
/// int_option.unwrap_or(1)
31+
/// let foo: Option<i32> = None;
32+
/// foo.unwrap_or(1);
3033
/// ```
3134
pub MANUAL_UNWRAP_OR,
3235
complexity,
@@ -84,7 +87,7 @@ fn lint_option_unwrap_or_case<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tc
8487
then {
8588
let reindented_none_body =
8689
utils::reindent_multiline(none_body_snippet.into(), true, Some(indent));
87-
let eager_eval = utils::eager_or_lazy::is_eagerness_candidate(cx, none_arm.body);
90+
let eager_eval = constant_simple(cx, cx.typeck_results(), none_arm.body).is_some();
8891
let method = if eager_eval {
8992
"unwrap_or"
9093
} else {

tests/ui/manual_unwrap_or.fixed

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn unwrap_or() {
99
Some(1).unwrap_or(42);
1010

1111
// richer none expr
12-
Some(1).unwrap_or_else(|| 1 + 42);
12+
Some(1).unwrap_or(1 + 42);
1313

1414
// multiline case
1515
Some(1).unwrap_or_else(|| {

tests/ui/manual_unwrap_or.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ LL | | Some(i) => i,
1818
LL | | };
1919
| |_____^ help: replace with: `Some(1).unwrap_or(42)`
2020

21-
error: this pattern reimplements `Option::unwrap_or_else`
21+
error: this pattern reimplements `Option::unwrap_or`
2222
--> $DIR/manual_unwrap_or.rs:18:5
2323
|
2424
LL | / match Some(1) {
2525
LL | | Some(i) => i,
2626
LL | | None => 1 + 42,
2727
LL | | };
28-
| |_____^ help: replace with: `Some(1).unwrap_or_else(|| 1 + 42)`
28+
| |_____^ help: replace with: `Some(1).unwrap_or(1 + 42)`
2929

3030
error: this pattern reimplements `Option::unwrap_or_else`
3131
--> $DIR/manual_unwrap_or.rs:24:5

0 commit comments

Comments
 (0)