MCPcopy Index your code
hub / github.com/SourceCode-AI/aura / visit_Call

Function visit_Call

aura/analyzers/python/convert_ast.py:68–76  ·  view source on GitHub ↗
(context)

Source from the content-addressed store, hash-verified

66
67
68def visit_Call(context):
69 keyword = {}
70 for x in context.node["keywords"]:
71 keyword[x["arg"]] = x["value"]
72
73 new_node = Call(context.node["func"], context.node["args"], keyword)
74 new_node.enrich_from_previous(context.node)
75 context.replace(new_node)
76 return new_node
77
78
79def visit_Assign(context):

Callers

nothing calls this directly

Calls 2

CallClass · 0.85
enrich_from_previousMethod · 0.80

Tested by

no test coverage detected