MCPcopy Index your code
hub / github.com/sphinx-doc/sphinx / visit_Call

Method visit_Call

sphinx/pycode/ast.py:127–132  ·  view source on GitHub ↗
(self, node: ast.Call)

Source from the content-addressed store, hash-verified

125 return op.join(self.visit(e) for e in node.values)
126
127 def visit_Call(self, node: ast.Call) -> str:
128 args = ', '.join(
129 [self.visit(e) for e in node.args]
130 + [f'{k.arg}={self.visit(k.value)}' for k in node.keywords],
131 )
132 return f'{self.visit(node.func)}({args})'
133
134 def visit_Constant(self, node: ast.Constant) -> str:
135 if node.value is Ellipsis:

Callers

nothing calls this directly

Calls 2

visitMethod · 0.80
joinMethod · 0.45

Tested by

no test coverage detected