MCPcopy Index your code
hub / github.com/python/mypy / visit_assign

Method visit_assign

mypyc/analysis/dataflow.py:489–490  ·  view source on GitHub ↗
(self, op: Assign)

Source from the content-addressed store, hash-verified

487 return gen, set()
488
489 def visit_assign(self, op: Assign) -> GenAndKill[Value]:
490 return non_trivial_sources(op), {op.dest}
491
492 def visit_assign_multi(self, op: AssignMulti) -> GenAndKill[Value]:
493 return non_trivial_sources(op), {op.dest}

Callers

nothing calls this directly

Calls 1

non_trivial_sourcesFunction · 0.85

Tested by

no test coverage detected