| 2216 | |
| 2217 | |
| 2218 | HighLevelILInstruction HighLevelILInstruction::GetLeftExpr() const |
| 2219 | { |
| 2220 | size_t operandIndex; |
| 2221 | if (GetOperandIndexForUsage(LeftExprHighLevelOperandUsage, operandIndex)) |
| 2222 | return GetRawOperandAsExpr(operandIndex); |
| 2223 | throw HighLevelILInstructionAccessException(); |
| 2224 | } |
| 2225 | |
| 2226 | |
| 2227 | HighLevelILInstruction HighLevelILInstruction::GetRightExpr() const |
no test coverage detected