(self, node, **kwargs)
| 166 | self.sym_visitor.visit(child) |
| 167 | |
| 168 | def visit_CallBlock(self, node, **kwargs): |
| 169 | for child in node.iter_child_nodes(exclude=('call',)): |
| 170 | self.sym_visitor.visit(child) |
| 171 | |
| 172 | def visit_OverlayScope(self, node, **kwargs): |
| 173 | for child in node.body: |
nothing calls this directly
no test coverage detected