(&self, path: &str)
| 2110 | } |
| 2111 | |
| 2112 | fn path_ignored_for_import(&self, path: &str) -> bool { |
| 2113 | !self.ignore_matcher.is_empty() && self.ignore_matcher.matches(path) |
| 2114 | } |
| 2115 | |
| 2116 | fn file_ignored_for_import(&self, file: &ParsedFile) -> bool { |
| 2117 | match file.operation { |
no test coverage detected