(&mut self, body: Node<'t>)
| 1493 | // --- function bodies ----------------------------------------------------- |
| 1494 | |
| 1495 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 1496 | self.visit_for_calls_and_structure(body); |
| 1497 | } |
| 1498 | |
| 1499 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 1500 | let kind = node.kind(); |
no test coverage detected