(&mut self, body: Node<'t>)
| 354 | } |
| 355 | |
| 356 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 357 | self.visit_for_calls_and_structure(body); |
| 358 | } |
| 359 | |
| 360 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 361 | let kind = node.kind(); |
no test coverage detected