(&mut self, expr: &'ast mut Expr<Aug>)
| 539 | } |
| 540 | |
| 541 | fn visit_expr_mut(&mut self, expr: &'ast mut Expr<Aug>) { |
| 542 | visit_mut::visit_expr_mut(self, expr); |
| 543 | if let Some((_name, new_expr)) = self.rewrite_expr(expr) { |
| 544 | *expr = new_expr; |
| 545 | } |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | /// Removes syntax sugar to simplify the planner. |
nothing calls this directly
no test coverage detected