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

Method prefix_operands

python/mediumlevelil.py:708–716  ·  view source on GitHub ↗

All operands in the expression tree in prefix order

(self)

Source from the content-addressed store, hash-verified

706
707 @property
708 def prefix_operands(self) -> List[MediumLevelILOperandType]:
709 """All operands in the expression tree in prefix order"""
710 result: List[MediumLevelILOperandType] = [MediumLevelILOperationAndSize(self.operation, self.size)]
711 for operand in self.operands:
712 if isinstance(operand, MediumLevelILInstruction):
713 result.extend(operand.prefix_operands)
714 else:
715 result.append(operand)
716 return result
717
718 @property
719 def postfix_operands(self) -> List[MediumLevelILOperandType]:

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45

Tested by

no test coverage detected