Check whether the existing use block contains any class (plain `use`) imports — i.e. imports that are neither `use function` nor `use const`.
(&self)
| 145 | /// `use`) imports — i.e. imports that are neither `use function` |
| 146 | /// nor `use const`. |
| 147 | pub(crate) fn has_class_imports(&self) -> bool { |
| 148 | self.existing.iter().any(|(_, k)| Self::key_group(k) == 0) |
| 149 | } |
| 150 | |
| 151 | /// Check whether a `use function` import already exists whose short |
| 152 | /// name (case-insensitive) matches the given short name but whose |
no test coverage detected