All operands in the expression tree in postfix order
(self)
| 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']: |
nothing calls this directly
no test coverage detected