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

Method postfix_operands

python/mediumlevelil.py:719–728  ·  view source on GitHub ↗

All operands in the expression tree in postfix order

(self)

Source from the content-addressed store, hash-verified

717
718 @property
719 def postfix_operands(self) -> List[MediumLevelILOperandType]:
720 """All operands in the expression tree in postfix order"""
721 result: List[MediumLevelILOperandType] = []
722 for operand in self.operands:
723 if isinstance(operand, MediumLevelILInstruction):
724 result.extend(operand.postfix_operands)
725 else:
726 result.append(operand)
727 result.append(MediumLevelILOperationAndSize(self.operation, self.size))
728 return result
729
730 @property
731 def instruction_operands(self) -> List['MediumLevelILInstruction']:

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45

Tested by

no test coverage detected