(&mut self, from: u32, name: &str, node: Node)
| 1410 | } |
| 1411 | |
| 1412 | fn push_fn_ref_cand(&mut self, from: u32, name: &str, node: Node) { |
| 1413 | if name.is_empty() || is_stoplisted(name) { |
| 1414 | return; |
| 1415 | } |
| 1416 | let p = node.start_position(); |
| 1417 | self.fn_ref_cands.push(Cand { |
| 1418 | from, |
| 1419 | name: name.to_string(), |
| 1420 | line: p.row as u32 + 1, |
| 1421 | column_byte: node.start_byte(), |
| 1422 | row: p.row, |
| 1423 | }); |
| 1424 | } |
| 1425 | |
| 1426 | fn scan_fn_ref_subtree(&mut self, node: Node<'t>, depth: u32) { |
| 1427 | stack_guard!(); |
no test coverage detected