(key: &str, data: &[u8])
| 491 | return ResolvedPath::Disk(path_buf); |
| 492 | } |
| 493 | |
| 494 | match project_root_opt.as_deref() { |
| 495 | Some(ProjectRoot::Disk { root, .. }) => { |
| 496 | if let Some(stripped) = path.strip_prefix("res://") { |
| 497 | if root_has_res_dir { |
| 498 | ResolvedPath::Disk(root.join("res").join(stripped)) |
no test coverage detected