MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / _visit_node

Method _visit_node

aura/analyzers/python/nodes.py:514–519  ·  view source on GitHub ↗
(self, context)

Source from the content-addressed store, hash-verified

512 ctx: ASTNode
513
514 def _visit_node(self, context):
515 for idx, e in enumerate(self.elts):
516 context.visit_child(
517 node=e,
518 replace=partial(self.__replace_elt, idx=idx, visitor=context.visitor),
519 )
520
521 def __replace_elt(self, value, idx, visitor):
522 self.elts[idx] = value

Callers

nothing calls this directly

Calls 1

visit_childMethod · 0.80

Tested by

no test coverage detected