MCPcopy Index your code
hub / github.com/nodejs/node / generic_visit

Method generic_visit

tools/inspector_protocol/jinja2/visitor.py:41–44  ·  view source on GitHub ↗

Called if no explicit visitor function exists for a node.

(self, node, *args, **kwargs)

Source from the content-addressed store, hash-verified

39 return self.generic_visit(node, *args, **kwargs)
40
41 def generic_visit(self, node, *args, **kwargs):
42 """Called if no explicit visitor function exists for a node."""
43 for node in node.iter_child_nodes():
44 self.visit(node, *args, **kwargs)
45
46
47class NodeTransformer(NodeVisitor):

Callers 3

visitMethod · 0.95
visit_FilterMethod · 0.45
visit_TestMethod · 0.45

Calls 2

visitMethod · 0.95
iter_child_nodesMethod · 0.45

Tested by

no test coverage detected