(self, operand_index: int)
| 1024 | ) |
| 1025 | |
| 1026 | def _get_var(self, operand_index: int) -> variable.Variable: |
| 1027 | value = self.instr.operands[operand_index] |
| 1028 | return variable.Variable.from_identifier(self.function, value) |
| 1029 | |
| 1030 | def _get_var_ssa(self, operand_index1: int, operand_index2: int) -> SSAVariable: |
| 1031 | var = variable.Variable.from_identifier(self.function, self.instr.operands[operand_index1]) |