(nodeType, childset, iterable)
| 523 | return ast.Call(func, args=args, keywords=[]) |
| 524 | |
| 525 | def iterableLogExpressionResultAndStartFrame(nodeType, childset, iterable): |
| 526 | mapFunc = ast.Lambda( |
| 527 | ast.arguments(posonlyargs=[], args=[ast.arg('x')], kwonlyargs=[], kw_defaults=[], defaults=[]), |
| 528 | logExpressionResultAndStartFrame(nodeType, childset, ast.Name('x', ctx=ast.Load()))) |
| 529 | |
| 530 | return ast.Call(ast.Name('map', ast.Load()), args=[mapFunc, iterable], keywords=[]) |
| 531 | |
| 532 | def endFrame(): |
| 533 | key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load()) |
no test coverage detected