| 85 | |
| 86 | template <typename Writer> |
| 87 | void Serialize(Writer& writer) const { |
| 88 | writer.StartObject(); |
| 89 | |
| 90 | Person::Serialize(writer); |
| 91 | |
| 92 | writer.String("education"); |
| 93 | if (education_) |
| 94 | education_->Serialize(writer); |
| 95 | else |
| 96 | writer.Null(); |
| 97 | |
| 98 | writer.EndObject(); |
| 99 | } |
| 100 | |
| 101 | private: |
| 102 |
nothing calls this directly
no test coverage detected