(self, operand_index: int)
| 762 | core.BNMediumLevelILFreeOperandList(operand_list) |
| 763 | |
| 764 | def get_member_index(self, operand_index: int) -> Optional[int]: |
| 765 | value = self.core_instr.operands[operand_index] |
| 766 | if (value & (1 << 63)) != 0: |
| 767 | value = None |
| 768 | return value |
| 769 | |
| 770 | def get_label(self, operand_index: int) -> GotoLabel: |
| 771 | return GotoLabel(self.function, self.core_instr.operands[operand_index]) |
no outgoing calls
no test coverage detected