``append`` adds the ExpressionIndex ``expr`` to the current MediumLevelILFunction. :param ExpressionIndex expr: the ExpressionIndex to add to the current MediumLevelILFunction :return: number of ExpressionIndex in the current function :rtype: int
(self, expr: ExpressionIndex)
| 3610 | core.BNSetMediumLevelILExprAttributes(self.handle, expr, result) |
| 3611 | |
| 3612 | def append(self, expr: ExpressionIndex) -> int: |
| 3613 | """ |
| 3614 | ``append`` adds the ExpressionIndex ``expr`` to the current MediumLevelILFunction. |
| 3615 | |
| 3616 | :param ExpressionIndex expr: the ExpressionIndex to add to the current MediumLevelILFunction |
| 3617 | :return: number of ExpressionIndex in the current function |
| 3618 | :rtype: int |
| 3619 | """ |
| 3620 | return core.BNMediumLevelILAddInstruction(self.handle, expr) |
| 3621 | |
| 3622 | def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 3623 | """ |
no outgoing calls
no test coverage detected