``append`` adds the ExpressionIndex ``expr`` to the current LowLevelILFunction. :param ExpressionIndex expr: the ExpressionIndex to add to the current LowLevelILFunction :return: number of ExpressionIndex in the current function :rtype: int
(self, expr: ExpressionIndex)
| 4178 | core.BNSetLowLevelILExprAttributes(self.handle, expr, result) |
| 4179 | |
| 4180 | def append(self, expr: ExpressionIndex) -> int: |
| 4181 | """ |
| 4182 | ``append`` adds the ExpressionIndex ``expr`` to the current LowLevelILFunction. |
| 4183 | |
| 4184 | :param ExpressionIndex expr: the ExpressionIndex to add to the current LowLevelILFunction |
| 4185 | :return: number of ExpressionIndex in the current function |
| 4186 | :rtype: int |
| 4187 | """ |
| 4188 | return core.BNLowLevelILAddInstruction(self.handle, expr) |
| 4189 | |
| 4190 | def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 4191 | """ |
no outgoing calls
no test coverage detected