| 295 | |
| 296 | template <typename T> |
| 297 | ParsedMessageValue MakeParsedMessage(absl::string_view text = R"pb()pb") { |
| 298 | return ParsedMessageValue(DynamicParseTextProto<T>(text), arena()); |
| 299 | } |
| 300 | |
| 301 | private: |
| 302 | google::protobuf::Arena arena_; |
nothing calls this directly
no test coverage detected