Check whether the existing use block contains any `use function` imports.
(&self)
| 138 | /// Check whether the existing use block contains any `use function` |
| 139 | /// imports. |
| 140 | pub(crate) fn has_function_imports(&self) -> bool { |
| 141 | self.existing.iter().any(|(_, k)| Self::key_group(k) == 2) |
| 142 | } |
| 143 | |
| 144 | /// Check whether the existing use block contains any class (plain |
| 145 | /// `use`) imports — i.e. imports that are neither `use function` |
no test coverage detected