| 50 | |
| 51 | template <> |
| 52 | bool ValueEquals(const Value& value, bool other) { |
| 53 | if (auto bool_value = As<BoolValue>(value); bool_value) { |
| 54 | return bool_value->NativeValue() == other; |
| 55 | } |
| 56 | return false; |
| 57 | } |
| 58 | |
| 59 | template <> |
| 60 | bool ValueEquals(const Value& value, int64_t other) { |
nothing calls this directly
no test coverage detected