(self, label: BasicBlock, line: int = -1)
| 400 | error_kind = ERR_NEVER |
| 401 | |
| 402 | def __init__(self, label: BasicBlock, line: int = -1) -> None: |
| 403 | super().__init__(line) |
| 404 | self.label = label |
| 405 | |
| 406 | def targets(self) -> Sequence[BasicBlock]: |
| 407 | return (self.label,) |