| 742 | |
| 743 | |
| 744 | HighLevelILInstruction HighLevelILInstructionBase::GetRawOperandAsExpr(size_t operand) const |
| 745 | { |
| 746 | if (ast) |
| 747 | { |
| 748 | return HighLevelILInstruction( |
| 749 | function, function->GetRawExpr(operands[operand]), operands[operand], true, instructionIndex); |
| 750 | } |
| 751 | return HighLevelILInstruction( |
| 752 | function, function->GetRawNonASTExpr(operands[operand]), operands[operand], false, instructionIndex); |
| 753 | } |
| 754 | |
| 755 | |
| 756 | Variable HighLevelILInstructionBase::GetRawOperandAsVariable(size_t operand) const |
no test coverage detected