| 2557 | |
| 2558 | |
| 2559 | LowLevelILInstruction LowLevelILInstruction::GetLeftExpr() const |
| 2560 | { |
| 2561 | size_t operandIndex; |
| 2562 | if (GetOperandIndexForUsage(LeftExprLowLevelOperandUsage, operandIndex)) |
| 2563 | return GetRawOperandAsExpr(operandIndex); |
| 2564 | throw LowLevelILInstructionAccessException(); |
| 2565 | } |
| 2566 | |
| 2567 | |
| 2568 | LowLevelILInstruction LowLevelILInstruction::GetRightExpr() const |
no test coverage detected