``continue`` continue to the top of a loop statement :param ILSourceLocation loc: location of returned expression :return: The expression ``continue`` :rtype: ExpressionIndex
(self, loc: Optional['ILSourceLocation'] = None)
| 3092 | return self.expr(HighLevelILOperation.HLIL_BREAK, source_location=loc) |
| 3093 | |
| 3094 | def continue_expr(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 3095 | """ |
| 3096 | ``continue`` continue to the top of a loop statement |
| 3097 | |
| 3098 | :param ILSourceLocation loc: location of returned expression |
| 3099 | :return: The expression ``continue`` |
| 3100 | :rtype: ExpressionIndex |
| 3101 | """ |
| 3102 | return self.expr(HighLevelILOperation.HLIL_CONTINUE, source_location=loc) |
| 3103 | |
| 3104 | def jump(self, dest: ExpressionIndex, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 3105 | """ |