MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / push_fn_ref_cand

Method push_fn_ref_cand

codegraph-kernel/src/kotlin.rs:1350–1362  ·  view source on GitHub ↗
(&mut self, from: u32, name: &str, node: Node)

Source from the content-addressed store, hash-verified

1348 }
1349
1350 fn push_fn_ref_cand(&mut self, from: u32, name: &str, node: Node) {
1351 if name.is_empty() || is_stoplisted(name) {
1352 return;
1353 }
1354 let p = node.start_position();
1355 self.fn_ref_cands.push(Cand {
1356 from,
1357 name: name.to_string(),
1358 line: p.row as u32 + 1,
1359 column_byte: node.start_byte(),
1360 row: p.row,
1361 });
1362 }
1363
1364 fn scan_fn_ref_subtree(&mut self, node: Node<'t>, depth: u32) {
1365 if depth > 12 {

Callers 1

Calls 1

is_stoplistedFunction · 0.70

Tested by

no test coverage detected