Bytecode index of the jump target if this is a jump operation. Otherwise return None.
(self)
| 420 | |
| 421 | @property |
| 422 | def jump_target(self): |
| 423 | """Bytecode index of the jump target if this is a jump operation. |
| 424 | |
| 425 | Otherwise return None. |
| 426 | """ |
| 427 | return _get_jump_target(self.opcode, self.arg, self.offset) |
| 428 | |
| 429 | @property |
| 430 | def is_jump_target(self): |
nothing calls this directly
no test coverage detected