(self, expr: Expression)
| 724 | return new |
| 725 | |
| 726 | def expr(self, expr: Expression) -> Expression: |
| 727 | new = expr.accept(self) |
| 728 | assert isinstance(new, Expression) |
| 729 | new.set_line(expr) |
| 730 | return new |
| 731 | |
| 732 | def stmt(self, stmt: Statement) -> Statement: |
| 733 | new = stmt.accept(self) |
no test coverage detected