MCPcopy Create free account
hub / github.com/SplootCode/splootcode / generateContinueStatement

Function generateContinueStatement

python/executor.py:677–684  ·  view source on GitHub ↗
(node, traced, lineno)

Source from the content-addressed store, hash-verified

675 ]
676
677def generateContinueStatement(node, traced, lineno):
678 if not traced:
679 return [ast.Continue(lineno=lineno)]
680
681 return [
682 endLoop(),
683 ast.Continue(lineno=lineno)
684 ]
685
686def generateAstStatement(sploot_node, traced):
687 if sploot_node["type"] == "PYTHON_STATEMENT":

Callers 1

Calls 1

endLoopFunction · 0.85

Tested by

no test coverage detected