(&mut self, body: Node<'t>)
| 522 | // --- visitFunctionBody ------------------------------------------------------ |
| 523 | |
| 524 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 525 | self.visit_for_calls_and_structure(body); |
| 526 | } |
| 527 | |
| 528 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 529 | let kind = node.kind(); |
no test coverage detected