(&mut self, _l: &Lambda)
| 563 | } |
| 564 | |
| 565 | fn visit_lambda(&mut self, _l: &Lambda) { |
| 566 | self.visit_expr(&_l.body); |
| 567 | // todo: this can share a visit args with functions |
| 568 | } |
| 569 | |
| 570 | fn visit_if_exp(&mut self, _i: &IfExp) { |
| 571 | self.visit_expr(&_i.body); |