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

Class MediumLevelILOperationAndSize

python/mediumlevelil.py:142–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140
141@dataclass(frozen=True, repr=False)
142class MediumLevelILOperationAndSize:
143 operation: MediumLevelILOperation
144 size: int
145
146 def __repr__(self):
147 if self.size == 0:
148 return f"<MediumLevelILOperationAndSize: {self.operation.name}>"
149 return f"<MediumLevelILOperationAndSize: {self.operation.name} {self.size}>"
150
151
152@dataclass(frozen=True)

Callers 2

prefix_operandsMethod · 0.85
postfix_operandsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected