| 29 | } |
| 30 | |
| 31 | LegacyStructValue GetLegacyStructValue(const Value& value) { |
| 32 | ABSL_DCHECK(IsLegacyStructValue(value)); |
| 33 | return value.variant_.Get<LegacyStructValue>(); |
| 34 | } |
| 35 | |
| 36 | absl::optional<LegacyStructValue> AsLegacyStructValue(const Value& value) { |
| 37 | if (IsLegacyStructValue(value)) { |
no test coverage detected