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

Function endFrame

python/executor.py:532–536  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

530 return ast.Call(ast.Name('map', ast.Load()), args=[mapFunc, iterable], keywords=[])
531
532def endFrame():
533 key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load())
534 func = ast.Attribute(value=key, attr="endFrame", ctx=ast.Load())
535 call_end_frame = ast.Call(func, args=[], keywords=[])
536 return ast.Expr(call_end_frame, lineno=1, col_offset=0)
537
538def endLoop():
539 key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load())

Callers 3

generateIfStatementFunction · 0.85
generateForStatementFunction · 0.85
generateWhileStatementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected