(self, op: Call)
| 779 | return super().visit_var_binding_(binding) |
| 780 | |
| 781 | def visit_call_(self, op: Call) -> None: |
| 782 | self.log.add("InternalCall") |
| 783 | return super().visit_call_(op) # call PyExprMutator.visit_call_ |
| 784 | |
| 785 | def visit_var_def_(self, var: Var) -> None: |
| 786 | self.log.add("VarDef") |
nothing calls this directly
no test coverage detected