MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / continue_expr

Method continue_expr

python/highlevelil.py:3094–3102  ·  view source on GitHub ↗

``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)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

exprMethod · 0.95

Tested by

no test coverage detected