(self, node: nodes.Node, *args: t.Any, **kwargs: t.Any)
| 226 | self.sym_visitor.visit(child) |
| 227 | |
| 228 | def generic_visit(self, node: nodes.Node, *args: t.Any, **kwargs: t.Any) -> None: |
| 229 | raise NotImplementedError(f"Cannot find symbols for {type(node).__name__!r}") |
| 230 | |
| 231 | |
| 232 | class FrameSymbolVisitor(NodeVisitor): |
no outgoing calls
no test coverage detected