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

Method walk_attr_args

codegraph-kernel/src/swift.rs:709–716  ·  view source on GitHub ↗
(&mut self, n: Node<'t>)

Source from the content-addressed store, hash-verified

707 }
708
709 fn walk_attr_args(&mut self, n: Node<'t>) {
710 self.extract_static_member_ref(n);
711 for i in 0..n.named_child_count() {
712 if let Some(c) = n.named_child(i) {
713 self.walk_attr_args(c);
714 }
715 }
716 }
717
718 // --- visitFunctionBody ---------------------------------------------------------
719

Callers 1

Calls 1

Tested by

no test coverage detected