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

Function startChildSetStatement

python/executor.py:545–550  ·  view source on GitHub ↗
(childSetName)

Source from the content-addressed store, hash-verified

543
544
545def startChildSetStatement(childSetName):
546 key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load())
547 func = ast.Attribute(value=key, attr="startChildSet", ctx=ast.Load())
548 args = [ast.Constant(childSetName)]
549 call_start_childset = ast.Call(func, args=args, keywords=[])
550 return ast.Expr(call_start_childset, lineno=1, col_offset=0)
551
552
553def generateForStatement(for_node, traced, lineno):

Callers 3

generateIfStatementFunction · 0.85
generateForStatementFunction · 0.85
generateWhileStatementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected