MCPcopy Create free account
hub / github.com/RustPython/RustPython / jump_target

Method jump_target

Lib/dis.py:421–426  ·  view source on GitHub ↗

Bytecode index of the jump target if this is a jump operation. Otherwise return None.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

_get_jump_targetFunction · 0.85

Tested by

no test coverage detected