(&mut self, body: Node<'t>)
| 1101 | // --- visitFunctionBody ----------------------------------------------------- |
| 1102 | |
| 1103 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 1104 | self.visit_for_calls_and_structure(body); |
| 1105 | } |
| 1106 | |
| 1107 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 1108 | let kind = node.kind(); |
no test coverage detected