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