MCPcopy Create free account
hub / github.com/SalesforceAIResearch/perfcodegen / visit_AsyncFor

Method visit_AsyncFor

src/sanitize.py:112–118  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

110 return node
111
112 def visit_AsyncFor(self, node):
113 if len(node.body) == 0:
114 node.body.append(ast.Pass())
115 return node
116 else:
117 self.generic_visit(node)
118 return node
119
120 def visit_With(self, node):
121 if len(node.body) == 0:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected