(left: &Path, right: &Path)
| 2272 | } |
| 2273 | |
| 2274 | fn paths_refer_to_same_file(left: &Path, right: &Path) -> bool { |
| 2275 | if left == right { |
| 2276 | return true; |
| 2277 | } |
| 2278 | match (left.canonicalize(), right.canonicalize()) { |
| 2279 | (Ok(left), Ok(right)) => left == right, |
| 2280 | _ => false, |
| 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | fn service_matches_launch_options( |
| 2285 | metadata: &ServiceMetadata, |
no outgoing calls
no test coverage detected