(self, visitor: StatementVisitor[T])
| 1904 | self.invalid_recursive_alias = False |
| 1905 | |
| 1906 | def accept(self, visitor: StatementVisitor[T]) -> T: |
| 1907 | return visitor.visit_assignment_stmt(self) |
| 1908 | |
| 1909 | |
| 1910 | class OperatorAssignmentStmt(Statement): |
nothing calls this directly
no test coverage detected