(stmt: &pr::Stmt, name: &str)
| 177 | } |
| 178 | |
| 179 | pub(crate) fn is_mod_def_for(stmt: &pr::Stmt, name: &str) -> bool { |
| 180 | stmt.kind.as_module_def().is_some_and(|x| x.name == name) |
| 181 | } |
| 182 | |
| 183 | fn path_starts_with_uppercase(p: &&PathBuf) -> bool { |
| 184 | p.components() |
no outgoing calls
no test coverage detected