(&self, path: &str)
| 2223 | } |
| 2224 | |
| 2225 | fn path_ignored_for_import(&self, path: &str) -> bool { |
| 2226 | !self.ignore_matcher.is_empty() && self.ignore_matcher.matches(path) |
| 2227 | } |
| 2228 | |
| 2229 | fn file_ignored_for_import(&self, file: &ParsedFile) -> bool { |
| 2230 | match file.operation { |
no test coverage detected