Object is an interface abstracting the abilities shared by enums, messages, extensions and imported objects.
| 375 | |
| 376 | // Object is an interface abstracting the abilities shared by enums, messages, extensions and imported objects. |
| 377 | type Object interface { |
| 378 | GoImportPath() GoImportPath |
| 379 | TypeName() []string |
| 380 | File() *FileDescriptor |
| 381 | } |
| 382 | |
| 383 | // Generator is the type whose methods generate the output, stored in the associated response structure. |
| 384 | type Generator struct { |
no outgoing calls
no test coverage detected