``nop`` no operation, this instruction does nothing :param loc: Location of expression :return: The no operation expression :rtype: ExpressionIndex
(self, loc: Optional['ILSourceLocation'] = None)
| 3620 | return core.BNMediumLevelILAddInstruction(self.handle, expr) |
| 3621 | |
| 3622 | def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 3623 | """ |
| 3624 | ``nop`` no operation, this instruction does nothing |
| 3625 | |
| 3626 | :param loc: Location of expression |
| 3627 | :return: The no operation expression |
| 3628 | :rtype: ExpressionIndex |
| 3629 | """ |
| 3630 | return self.expr(MediumLevelILOperation.MLIL_NOP, source_location=loc) |
| 3631 | |
| 3632 | def set_var( |
| 3633 | self, size: int, dest: 'variable.Variable', src: ExpressionIndex, |