| 487 | void Destroy(); |
| 488 | |
| 489 | void DestroyMedium() { |
| 490 | ABSL_DCHECK_EQ(GetKind(), ByteStringKind::kMedium); |
| 491 | DestroyMedium(rep_.medium); |
| 492 | } |
| 493 | |
| 494 | static void DestroyMedium(const MediumByteStringRep& rep) { |
| 495 | StrongUnref(GetMediumReferenceCount(rep)); |
no test coverage detected