(unmarshal func(interface{}) error)
| 231 | }) |
| 232 | |
| 233 | func (o *Overrides) UnmarshalYAML(unmarshal func(interface{}) error) error { |
| 234 | type plain Overrides |
| 235 | if err := unmarshal((*plain)(o)); err != nil { |
| 236 | return err |
| 237 | } |
| 238 | return processExtensions(o) |
| 239 | } |
| 240 | |
| 241 | func (o *Overrides) UnmarshalJSON(data []byte) error { |
| 242 | type plain Overrides |
nothing calls this directly
no test coverage detected