modObject is a representation of dagger.ObjectTypeDef.
| 881 | |
| 882 | // modObject is a representation of dagger.ObjectTypeDef. |
| 883 | type modObject struct { |
| 884 | Name string |
| 885 | Description string |
| 886 | Functions []*modFunction |
| 887 | Fields []*modField |
| 888 | Constructor *modFunction |
| 889 | SourceModuleName string |
| 890 | owner *moduleDef |
| 891 | typeDef *modTypeDef |
| 892 | } |
| 893 | |
| 894 | var _ functionProvider = (*modObject)(nil) |
| 895 |
nothing calls this directly
no outgoing calls
no test coverage detected