(root: &Path, path: &Path)
| 126 | } |
| 127 | |
| 128 | pub fn res_paths_from_sigs(sigs: &[FileSig]) -> Vec<String> { |
| 129 | sigs.iter() |
| 130 | .filter_map(|sig| { |
| 131 | let rel = sig_path(sig)?; |
| 132 | if rel == "res" { |
| 133 | return Some("res://".to_string()); |
| 134 | } |
| 135 | let path = rel.strip_prefix("res/")?; |
| 136 | let mut path = format!("res://{path}"); |
no outgoing calls
no test coverage detected