(self, op: Unbox)
| 120 | return self.log(op, "box", str(op.src.type)) |
| 121 | |
| 122 | def visit_unbox(self, op: Unbox) -> Value: |
| 123 | return self.log(op, "unbox", str(op.type)) |
| 124 | |
| 125 | def visit_cast(self, op: Cast) -> Value | None: |
| 126 | value = self.log(op, "cast", str(op.type)) |