ProtobufFromGoNamer finds the protobuf name of a type (and its package, and the package path) from its Go name.
| 195 | // ProtobufFromGoNamer finds the protobuf name of a type (and its package, and |
| 196 | // the package path) from its Go name. |
| 197 | type ProtobufFromGoNamer interface { |
| 198 | GoNameToProtoName(name types.Name) types.Name |
| 199 | } |
| 200 | |
| 201 | type ProtobufLocator interface { |
| 202 | ProtoTypeFor(t *types.Type) (*types.Type, error) |
no outgoing calls
no test coverage detected