(&mut self, body: Node<'t>)
| 609 | // --- visitFunctionBody -------------------------------------------------------- |
| 610 | |
| 611 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 612 | self.visit_for_calls_and_structure(body); |
| 613 | } |
| 614 | |
| 615 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 616 | let kind = node.kind(); |
no test coverage detected