Fix clippy suggestions.
This commit is contained in:
parent
8ba5946c32
commit
9782c094b7
|
@ -34,9 +34,9 @@ impl EvalResult {
|
||||||
|
|
||||||
pub fn failed(&self, can_error: bool) -> bool {
|
pub fn failed(&self, can_error: bool) -> bool {
|
||||||
if can_error {
|
if can_error {
|
||||||
!matches!(self.result, Err(_))
|
self.result.is_ok()
|
||||||
} else {
|
} else {
|
||||||
matches!(self.result, Err(_))
|
self.result.is_err()
|
||||||
|| matches!(self.result, Ok(Term::Error))
|
|| matches!(self.result, Ok(Term::Error))
|
||||||
|| matches!(self.result, Ok(Term::Constant(ref con)) if matches!(con.as_ref(), Constant::Bool(false)))
|
|| matches!(self.result, Ok(Term::Constant(ref con)) if matches!(con.as_ref(), Constant::Bool(false)))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue