(self, visitor: StatementVisitor[T])
| 1781 | self.names = names |
| 1782 | |
| 1783 | def accept(self, visitor: StatementVisitor[T]) -> T: |
| 1784 | return visitor.visit_global_decl(self) |
| 1785 | |
| 1786 | |
| 1787 | class NonlocalDecl(Statement): |
nothing calls this directly
no test coverage detected