| 552 | } |
| 553 | |
| 554 | void AppendString(const std::string& str) override { |
| 555 | Base::AppendString(str); |
| 556 | ASSERT_OK(i8_builder->AppendEmptyValue()); |
| 557 | ASSERT_OK(dbl_builder->AppendEmptyValue()); |
| 558 | } |
| 559 | |
| 560 | void AppendDouble(double dbl) override { |
| 561 | Base::AppendDouble(dbl); |
nothing calls this directly
no test coverage detected