-
Couldn't load subscription status.
- Fork 1.8k
Description
This likely overlaps with the goal described in #1774, but this issue is intended to track a lower-level list of specific types. Each of these types must have tests in place to ensure the "zero value" is usable in the way it is documented. This may require softening the rule in some places, but I'd like such places to be accompanied with documentation and good examples of happy path usage. The critical parts of what I mean by "usable" are:
- None of the functions with the struct as receiver or argument
panic - None of the templates that use the struct
panicor otherwise result in an error
I do not expect arbitrary, undocumented, or otherwise unsupervised usage of a "zero value" struct to fulfill these requirements. The primary way I expect the above definition of "usable" to be implemented is via private methods that ensure all fields are minimally initialized such as *Command.setupDefaults.
- Ensure
Commandtype is usable as "zero value" - Ensure
ValueSourceChaintype is usable as "zero value" - Ensure
MutuallyExclusiveFlagstype is usable as "zero value" - Ensure
BoolWithInverseFlagtype is usable as "zero value" - (more TODO)