(&mut self, body: Node<'t>)
| 718 | // --- visitFunctionBody --------------------------------------------------------- |
| 719 | |
| 720 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 721 | self.visit_for_calls_and_structure(body); |
| 722 | } |
| 723 | |
| 724 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 725 | let kind = node.kind(); |
no test coverage detected