(path: &Path)
| 156 | } |
| 157 | |
| 158 | fn is_devtools_frontend_root(path: &Path) -> bool { |
| 159 | path.join("inspector.html").is_file() |
| 160 | && path.join("entrypoints/inspector/inspector.js").is_file() |
| 161 | } |
| 162 | |
| 163 | pub fn target_id(process_identifier: i64) -> String { |
| 164 | format!("sdi-{process_identifier}") |
no outgoing calls
no test coverage detected