(self, symbols)
| 151 | class RootVisitor(NodeVisitor): |
| 152 | |
| 153 | def __init__(self, symbols): |
| 154 | self.sym_visitor = FrameSymbolVisitor(symbols) |
| 155 | |
| 156 | def _simple_visit(self, node, **kwargs): |
| 157 | for child in node.iter_child_nodes(): |
nothing calls this directly
no test coverage detected