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

Method find_child_by_kind

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

Source from the content-addressed store, hash-verified

1121 }
1122
1123 fn find_child_by_kind(&self, node: Node<'t>, kind: &str) -> Option<Node<'t>> {
1124 (0..node.named_child_count())
1125 .filter_map(|i| node.named_child(i))
1126 .find(|c| c.kind() == kind)
1127 }
1128
1129 /// extractVariable: C takes the dedicated branch (file-scope declarators,
1130 /// 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