(self, operand_index: int)
| 677 | return core.BNGetHighLevelILSSAVarVersionAtILInstruction(self.function.handle, var_data, self.instr_index) |
| 678 | |
| 679 | def get_int(self, operand_index: int) -> int: |
| 680 | value = self.core_instr.operands[operand_index] |
| 681 | return (value & ((1 << 63) - 1)) - (value & (1 << 63)) |
| 682 | |
| 683 | def get_float(self, operand_index: int) -> float: |
| 684 | value = self.core_instr.operands[operand_index] |
no outgoing calls
no test coverage detected