(self)
| 492 | self.emitter.emit_line("}") |
| 493 | |
| 494 | def next_branch(self) -> Branch | None: |
| 495 | if self.op_index + 1 < len(self.ops): |
| 496 | next_op = self.ops[self.op_index + 1] |
| 497 | if isinstance(next_op, Branch): |
| 498 | return next_op |
| 499 | return None |
| 500 | |
| 501 | def visit_set_attr(self, op: SetAttr) -> None: |
| 502 | if op.error_kind == ERR_FALSE: |
no test coverage detected