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

Function find_anonymous_class_body

codegraph-kernel/src/php.rs:1495–1504  ·  view source on GitHub ↗
(node: Node)

Source from the content-addressed store, hash-verified

1493}
1494
1495fn find_anonymous_class_body(node: Node) -> Option<Node> {
1496 for i in 0..node.named_child_count() {
1497 if let Some(child) = node.named_child(i) {
1498 if matches!(child.kind(), "class_body" | "declaration_list") {
1499 return Some(child);
1500 }
1501 }
1502 }
1503 None
1504}
1505
1506/// The shared `new ns.Foo<T>()` normalization: strip `<...` from the first
1507/// `<` (index > 0), keep the segment after the last `.`/`::`, strip ONE

Callers 2

visit_nodeMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected