(self, visitor: StatementVisitor[T])
| 1837 | self.expr = expr |
| 1838 | |
| 1839 | def accept(self, visitor: StatementVisitor[T]) -> T: |
| 1840 | return visitor.visit_expression_stmt(self) |
| 1841 | |
| 1842 | |
| 1843 | class AssignmentStmt(Statement): |
nothing calls this directly
no test coverage detected