(self, node, *args, **kwargs)
| 196 | self.sym_visitor.visit(child) |
| 197 | |
| 198 | def generic_visit(self, node, *args, **kwargs): |
| 199 | raise NotImplementedError('Cannot find symbols for %r' % |
| 200 | node.__class__.__name__) |
| 201 | |
| 202 | |
| 203 | class FrameSymbolVisitor(NodeVisitor): |
no outgoing calls
no test coverage detected