| 190 | // Value representation. |
| 191 | struct AdaptedToValueVisitor { |
| 192 | absl::StatusOr<Value> operator()(int64_t in) { return IntValue(in); } |
| 193 | |
| 194 | absl::StatusOr<Value> operator()(uint64_t in) { return UintValue(in); } |
| 195 |
nothing calls this directly
no test coverage detected