Default module resolver over bundled `os-runtime` sources.
(name: &str)
| 1349 | fn programs_key(path: &Path) -> Option<String> { |
| 1350 | let mut parts: Vec<String> = Vec::new(); |
| 1351 | let mut found = false; |
| 1352 | for component in path.components() { |
| 1353 | if let std::path::Component::Normal(part) = component { |
| 1354 | if !found && part == "programs" { |
| 1355 | found = true; |
| 1356 | } |
nothing calls this directly
no test coverage detected