(self, op: Call)
| 801 | @relax.expr_functor.mutator |
| 802 | class LeafMutator(InternalMutator._cls): |
| 803 | def visit_call_(self, op: Call) -> None: |
| 804 | self.log.add("LeafCall") |
| 805 | return super().visit_call_(op) # call InternalMutator.visit_call_ |
| 806 | |
| 807 | call_node = relax.op.add(x, y) |
| 808 | im = InternalMutator() |
nothing calls this directly
no test coverage detected