(&mut self, body: Node<'t>)
| 682 | // --- visitFunctionBody ------------------------------------------------------ |
| 683 | |
| 684 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 685 | self.visit_for_calls_and_structure(body); |
| 686 | } |
| 687 | |
| 688 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 689 | let kind = node.kind(); |
no test coverage detected