| 507 | } |
| 508 | |
| 509 | static bool shouldRecurse(const google::protobuf::FieldDescriptor* f) |
| 510 | { |
| 511 | if (f->type() != google::protobuf::FieldDescriptor::TYPE_MESSAGE) |
| 512 | return false; |
| 513 | return f->message_type()->options().GetExtension(::recurse); |
| 514 | } |
| 515 | |
| 516 | std::map<std::string, const google::protobuf::FieldDescriptor*> |
| 517 | findAllPossibleProtoFields(const google::protobuf::Descriptor* descriptor) |
no outgoing calls
no test coverage detected