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

Method walk_attr_args

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

Source from the content-addressed store, hash-verified

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

Callers 1

Calls 1

Tested by

no test coverage detected