(fileName string)
| 101 | } |
| 102 | |
| 103 | func IsDeclarationFileName(fileName string) bool { |
| 104 | return GetDeclarationFileExtension(fileName) != "" |
| 105 | } |
| 106 | |
| 107 | func ExtensionIsOneOf(ext string, extensions []string) bool { |
| 108 | return slices.Contains(extensions, ext) |
no test coverage detected