| 29 | explicit CelValueEqualImpl(const CelValue& v) : value_(v) {} |
| 30 | |
| 31 | bool MatchAndExplain(CelValue arg, |
| 32 | MatchResultListener* listener) const override { |
| 33 | return CelValueEqual(arg, value_); |
| 34 | } |
| 35 | |
| 36 | void DescribeTo(std::ostream* os) const override { |
| 37 | *os << value_.DebugString(); |
nothing calls this directly
no test coverage detected