(self, op: Add)
| 788 | self.log = ASTLog() |
| 789 | |
| 790 | def visit_add_(self, op: Add) -> tir.PrimExpr: |
| 791 | self.log.add("InternalAdd") |
| 792 | return super().visit_add_(op) # call ExprMutator.visit_add_ |
| 793 | |
| 794 | def visit_var_(self, op: Var) -> tir.PrimExpr: |
| 795 | self.log.add("InternalVar") |
nothing calls this directly
no test coverage detected