(t reflect.Type, atomName string)
| 139 | } |
| 140 | |
| 141 | func ValidateAtomType(t reflect.Type, atomName string) error { |
| 142 | seen := make(map[reflect.Type]bool) |
| 143 | return validateAtomTypeRecursive(t, seen, atomName, "") |
| 144 | } |
| 145 | |
| 146 | func makeAtomError(atomName string, parentName string, message string) error { |
| 147 | if parentName != "" { |
nothing calls this directly
no test coverage detected