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

Method modifiers_child

codegraph-kernel/src/java.rs:399–403  ·  view source on GitHub ↗
(&self, node: Node<'t>)

Source from the content-addressed store, hash-verified

397 // --- modifiers / hooks (languages/java.ts) -----------------------------------
398
399 fn modifiers_child(&self, node: Node<'t>) -> Option<Node<'t>> {
400 (0..node.named_child_count())
401 .filter_map(|i| node.named_child(i))
402 .find(|c| c.kind() == "modifiers")
403 }
404
405 fn visibility_of(&self, node: Node) -> Option<u8> {
406 for i in 0..node.child_count() {

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected