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

Function find_anonymous_class_body

codegraph-kernel/src/java.rs:1561–1570  ·  view source on GitHub ↗
(node: Node)

Source from the content-addressed store, hash-verified

1559}
1560
1561fn find_anonymous_class_body(node: Node) -> Option<Node> {
1562 for i in 0..node.named_child_count() {
1563 if let Some(child) = node.named_child(i) {
1564 if matches!(child.kind(), "class_body" | "declaration_list") {
1565 return Some(child);
1566 }
1567 }
1568 }
1569 None
1570}
1571
1572/// The `new ns.Foo<T>()` name normalization shared by instantiation /
1573/// anonymous-class / decorator extraction: strip `<...` from the first `<`

Callers 2

visit_nodeMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected