``no_ret`` returns an expression that halts disassembly :param ILSourceLocation loc: location of returned expression :return: The expression ``noreturn`` :rtype: ExpressionIndex
(self, loc: Optional['ILSourceLocation'] = None)
| 5131 | return self.expr(LowLevelILOperation.LLIL_RET, dest, source_location=loc) |
| 5132 | |
| 5133 | def no_ret(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 5134 | """ |
| 5135 | ``no_ret`` returns an expression that halts disassembly |
| 5136 | |
| 5137 | :param ILSourceLocation loc: location of returned expression |
| 5138 | :return: The expression ``noreturn`` |
| 5139 | :rtype: ExpressionIndex |
| 5140 | """ |
| 5141 | return self.expr(LowLevelILOperation.LLIL_NORET, source_location=loc) |
| 5142 | |
| 5143 | def flag_condition( |
| 5144 | self, cond: Union[str, LowLevelILFlagCondition, int], |