(appliedCodemods []string, codemodName string)
| 402 | } |
| 403 | |
| 404 | func wasCodemodApplied(appliedCodemods []string, codemodName string) bool { |
| 405 | return slices.Contains(appliedCodemods, codemodName) |
| 406 | } |
| 407 | |
| 408 | func wasAnyCodemodApplied(appliedCodemods []string, codemodNames ...string) bool { |
| 409 | for _, codemodName := range codemodNames { |
no outgoing calls
no test coverage detected