| 1688 | } |
| 1689 | |
| 1690 | void ListValueDebugString(const google::protobuf::MessageLite& message) { |
| 1691 | const int size = accessor_->ValuesSize(message); |
| 1692 | output_->push_back('['); |
| 1693 | for (int i = 0; i < size; ++i) { |
| 1694 | if (i > 0) { |
| 1695 | output_->append(", "); |
| 1696 | } |
| 1697 | ValueDebugString(accessor_->Values(message, i)); |
| 1698 | } |
| 1699 | output_->push_back(']'); |
| 1700 | } |
| 1701 | |
| 1702 | void StructDebugString(const google::protobuf::MessageLite& message) { |
| 1703 | const int size = accessor_->FieldsSize(message); |
no test coverage detected