(self, operand_index: int)
| 695 | return variable.ConstantData(value, 0, state, core.max_confidence, self.core_instr.size, self.function.source_function) |
| 696 | |
| 697 | def get_expr(self, operand_index: int) -> 'HighLevelILInstruction': |
| 698 | return HighLevelILInstruction.create( |
| 699 | self.function, ExpressionIndex(self.core_instr.operands[operand_index]), |
| 700 | self.as_ast |
| 701 | ) |
| 702 | |
| 703 | def get_intrinsic(self, operand_index: int) -> 'lowlevelil.ILIntrinsic': |
| 704 | if self.function.arch is None: |