(self, visitor: StatementVisitor[T])
| 1798 | self.names = names |
| 1799 | |
| 1800 | def accept(self, visitor: StatementVisitor[T]) -> T: |
| 1801 | return visitor.visit_nonlocal_decl(self) |
| 1802 | |
| 1803 | |
| 1804 | class Block(Statement): |
nothing calls this directly
no test coverage detected