| 245 | } |
| 246 | |
| 247 | Status Validate(const Scalar& scalar) { |
| 248 | if (!scalar.type) { |
| 249 | return Status::Invalid("scalar lacks a type"); |
| 250 | } |
| 251 | return VisitScalarInline(scalar, this); |
| 252 | } |
| 253 | |
| 254 | Status Visit(const NullScalar& s) { |
| 255 | if (s.is_valid) { |
nothing calls this directly
no test coverage detected