ComponentDiffableElement is an interface for any element in a componentdefinition that can be diffed
| 87 | |
| 88 | // ComponentDiffableElement is an interface for any element in a componentdefinition that can be diffed |
| 89 | type ComponentDiffableElement interface { |
| 90 | |
| 91 | } |
| 92 | |
| 93 | func diffParam(path string, paramA ComponentDefinitionParam, paramB ComponentDefinitionParam) ([]ComponentDiffAttributeChange, error) { |
| 94 | changes := make([]ComponentDiffAttributeChange, 0) |
nothing calls this directly
no outgoing calls
no test coverage detected