(&self)
| 839 | F: FunctionForm, |
| 840 | { |
| 841 | pub fn condition(&self) -> LowLevelILExpression<'func, A, M, F, ValueExpr> { |
| 842 | LowLevelILExpression::new( |
| 843 | self.function, |
| 844 | LowLevelExpressionIndex(self.op.operands[0] as usize), |
| 845 | ) |
| 846 | } |
| 847 | |
| 848 | pub fn true_target(&self) -> LowLevelILInstruction<'func, A, M, F> { |
| 849 | LowLevelILInstruction::new( |
no test coverage detected