(nodeType, childSet, expr)
| 511 | |
| 512 | |
| 513 | def logExpressionResultAndStartFrame(nodeType, childSet, expr): |
| 514 | key = ast.Name(id=SPLOOT_KEY, ctx=ast.Load()) |
| 515 | func = ast.Attribute( |
| 516 | value=key, attr="logExpressionResultAndStartFrame", ctx=ast.Load() |
| 517 | ) |
| 518 | args = [ |
| 519 | ast.Constant(nodeType), |
| 520 | ast.Constant(childSet), |
| 521 | expr, |
| 522 | ] |
| 523 | return ast.Call(func, args=args, keywords=[]) |
| 524 | |
| 525 | def iterableLogExpressionResultAndStartFrame(nodeType, childset, iterable): |
| 526 | mapFunc = ast.Lambda( |
no outgoing calls
no test coverage detected