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