| 507 | } |
| 508 | |
| 509 | void AppendString(const std::string& str) override { |
| 510 | Base::AppendString(str); |
| 511 | ASSERT_OK(i8_builder->AppendEmptyValue()); |
| 512 | ASSERT_OK(dbl_builder->AppendEmptyValue()); |
| 513 | } |
| 514 | |
| 515 | void AppendDouble(double dbl) override { |
| 516 | Base::AppendDouble(dbl); |
nothing calls this directly
no test coverage detected