(self)
| 110 | target: str | None |
| 111 | |
| 112 | def is_branch(self) -> bool: |
| 113 | return self.kind in (InstructionKind.LONG_BRANCH, InstructionKind.SHORT_BRANCH) |
| 114 | |
| 115 | def update_target(self, target: str) -> "Instruction": |
| 116 | assert self.target is not None |
no outgoing calls
no test coverage detected