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

Class LowLevelILOperationAndSize

python/lowlevelil.py:283–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

281
282@dataclass(frozen=True)
283class LowLevelILOperationAndSize:
284 operation: 'LowLevelILOperation'
285 size: int
286
287 def __repr__(self):
288 if self.size == 0:
289 return f"<LowLevelILOperationAndSize: {self.operation.name}>"
290 return f"<LowLevelILOperationAndSize: {self.operation.name} {self.size}>"
291
292
293@dataclass(frozen=True)

Callers 2

prefix_operandsMethod · 0.85
postfix_operandsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected