(childSetName)
| 543 | |
| 544 | |
| 545 | def 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 | |
| 553 | def generateForStatement(for_node, traced, lineno): |
no outgoing calls
no test coverage detected