(&mut self, body: Node<'t>)
| 356 | } |
| 357 | |
| 358 | fn visit_function_body(&mut self, body: Node<'t>) { |
| 359 | self.visit_for_calls_and_structure(body); |
| 360 | } |
| 361 | |
| 362 | fn visit_for_calls_and_structure(&mut self, node: Node<'t>) { |
| 363 | let kind = node.kind(); |
no test coverage detected