MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / visit

Method visit

tools/python-3.11.9-amd64/Lib/ast.py:414–418  ·  view source on GitHub ↗

Visit a node.

(self, node)

Source from the content-addressed store, hash-verified

412 """
413
414 def visit(self, node):
415 """Visit a node."""
416 method = 'visit_' + node.__class__.__name__
417 visitor = getattr(self, method, self.generic_visit)
418 return visitor(node)
419
420 def generic_visit(self, node):
421 """Called if no explicit visitor function exists for a node."""

Callers 1

generic_visitMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected