(self, op: If)
| 125 | self.log.pop_scope() |
| 126 | |
| 127 | def visit_if_(self, op: If) -> None: |
| 128 | self.log.add("If") |
| 129 | self.log.push_scope() |
| 130 | self.visit_expr(op.cond) |
| 131 | self.visit_expr(op.true_branch) |
| 132 | self.visit_expr(op.false_branch) |
| 133 | self.log.pop_scope() |
| 134 | |
| 135 | def visit_op_(self, op: Op) -> None: |
| 136 | self.log.add("Op") |
nothing calls this directly
no test coverage detected