(s, prefix string)
| 501 | } |
| 502 | |
| 503 | func hasPrefixIgnoringSliceAndPointerPrefix(s, prefix string) bool { |
| 504 | trimmedS := trimSliceAndPointerPrefix(s) |
| 505 | trimmedPrefix := trimSliceAndPointerPrefix(prefix) |
| 506 | return strings.HasPrefix(trimmedS, trimmedPrefix) |
| 507 | } |
| 508 | |
| 509 | func replaceConflictedArg(imports [][]ImportSpec, queries []Query) []Query { |
| 510 | m := make(map[string]struct{}) |
no test coverage detected