| 25 | } |
| 26 | |
| 27 | bool IsLegacyStructValue(const Value& value) { |
| 28 | return value.variant_.Is<LegacyStructValue>(); |
| 29 | } |
| 30 | |
| 31 | LegacyStructValue GetLegacyStructValue(const Value& value) { |
| 32 | ABSL_DCHECK(IsLegacyStructValue(value)); |
no outgoing calls
no test coverage detected