(context)
| 54 | |
| 55 | |
| 56 | def visit_Dict(context): |
| 57 | new_node = Dictionary(context.node["keys"], context.node["values"]) |
| 58 | new_node.enrich_from_previous(context.node) |
| 59 | context.replace(new_node) |
| 60 | return new_node |
| 61 | |
| 62 | |
| 63 | def visit_Expr(context): |
nothing calls this directly
no test coverage detected