(&mut self, body: Node<'t>)
| 417 | } |
| 418 | |
| 419 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 420 | self.visit_for_calls_and_structure(body); |
| 421 | } |
| 422 | |
| 423 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 424 | let kind = node.kind(); |
no test coverage detected