(self, visitor: NodeVisitor[T])
| 4777 | assert False, "PlaceholderNode can't be serialized" |
| 4778 | |
| 4779 | def accept(self, visitor: NodeVisitor[T]) -> T: |
| 4780 | return visitor.visit_placeholder_node(self) |
| 4781 | |
| 4782 | |
| 4783 | class SymbolTableNode: |
nothing calls this directly
no test coverage detected