(namespace string, typeOf reflect.Type)
| 983 | } |
| 984 | |
| 985 | func differentNamespaces(namespace string, typeOf reflect.Type) bool { |
| 986 | if strings.ContainsRune(typeOf.String(), '.') { |
| 987 | typeNamespace := strings.Split(typeOf.String(), ".")[0] |
| 988 | if namespace != typeNamespace { |
| 989 | return true |
| 990 | } |
| 991 | } |
| 992 | return false |
| 993 | } |
| 994 | |
| 995 | func typeClashWithReservedKeyword(input string) bool { |
| 996 | in := strings.ToLower(strings.TrimSpace(input)) |
no test coverage detected
searching dependent graphs…