``nop`` no operation, this instruction does nothing :param ILSourceLocation loc: Location of expression :return: The no operation expression :rtype: ExpressionIndex
(self, loc: Optional['ILSourceLocation'] = None)
| 2967 | core.BNSetHighLevelILExprAttributes(self.handle, expr, result) |
| 2968 | |
| 2969 | def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 2970 | """ |
| 2971 | ``nop`` no operation, this instruction does nothing |
| 2972 | |
| 2973 | :param ILSourceLocation loc: Location of expression |
| 2974 | :return: The no operation expression |
| 2975 | :rtype: ExpressionIndex |
| 2976 | """ |
| 2977 | return self.expr(HighLevelILOperation.HLIL_NOP, source_location=loc) |
| 2978 | |
| 2979 | def block( |
| 2980 | self, exprs: List[ExpressionIndex], loc: Optional['ILSourceLocation'] = None |