MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / InstructionBranch

Class InstructionBranch

python/architecture.py:119–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117
118@dataclass(frozen=True)
119class InstructionBranch:
120 type: BranchType
121 target: int
122 arch: Optional['Architecture']
123
124 def __repr__(self):
125 if self.arch is not None:
126 return f"<{self.type.name}: {self.arch.name}@{self.target:#x}>"
127 return f"<{self.type}: {self.target:#x}>"
128
129
130@dataclass(frozen=False)

Callers 1

add_branchMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected