(&self, other: &Self)
| 44 | |
| 45 | impl PartialEq for SymbolicValue { |
| 46 | fn eq(&self, other: &Self) -> bool { |
| 47 | match (&self.expression, &other.expression) { |
| 48 | // Assume widened values are equal |
| 49 | (Expression::Widen { path: p1, .. }, Expression::Widen { path: p2, .. }) => p1.eq(p2), |
| 50 | (e1, e2) => e1.eq(e2), |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | /// An abstract domain element that all represent the impossible concrete value. |
no outgoing calls
no test coverage detected