(prefix: &str, seg: &str)
| 727 | fn emit_use_binding_refs(&mut self, node: Node<'t>, from_row: u32) { |
| 728 | let mut paths: Vec<(String, Node)> = Vec::new(); |
| 729 | fn join(prefix: &str, seg: &str) -> String { |
| 730 | if prefix.is_empty() { seg.to_string() } else { format!("{prefix}::{seg}") } |
| 731 | } |
| 732 | fn collect<'t>(w: &Walker<'t>, n: Node<'t>, prefix: &str, paths: &mut Vec<(String, Node<'t>)>) { |
| 733 | stack_guard!(); |
| 734 | match n.kind() { |
no outgoing calls
no test coverage detected