()
| 536 | return ast.Expr(call_end_frame, lineno=1, col_offset=0) |
| 537 | |
| 538 | def endLoop(): |
| 539 | key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load()) |
| 540 | func = ast.Attribute(value=key, attr="endLoop", ctx=ast.Load()) |
| 541 | call_end_frame = ast.Call(func, args=[], keywords=[]) |
| 542 | return ast.Expr(call_end_frame, lineno=1, col_offset=0) |
| 543 | |
| 544 | |
| 545 | def startChildSetStatement(childSetName): |
no outgoing calls
no test coverage detected