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

Method find_child_by_kind

codegraph-kernel/src/ccpp/mod.rs:1107–1111  ·  view source on GitHub ↗
(&self, node: Node<'t>, kind: &str)

Source from the content-addressed store, hash-verified

1105 }
1106
1107 fn find_child_by_kind(&self, node: Node<'t>, kind: &str) -> Option<Node<'t>> {
1108 (0..node.named_child_count())
1109 .filter_map(|i| node.named_child(i))
1110 .find(|c| c.kind() == kind)
1111 }
1112
1113 /// extractVariable: C takes the dedicated branch (file-scope declarators,
1114 /// tree-sitter.ts:2795); cpp takes the TS GENERIC fallback (direct

Callers 2

extract_type_aliasMethod · 0.80
extract_importMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected