(module_scope: &[String])
| 280 | } |
| 281 | |
| 282 | fn module_path_from_scope(module_scope: &[String]) -> Option<String> { |
| 283 | if module_scope.is_empty() { |
| 284 | None |
| 285 | } else { |
| 286 | Some(module_scope.join("::")) |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | fn extract_import(node: Node<'_>, source: &str) -> RustImport { |
| 291 | let text = node_text(node, source); |
no outgoing calls
no test coverage detected
searching dependent graphs…