(&mut self, node: Node<'t>)
| 674 | // --- extractors ---------------------------------------------------------------- |
| 675 | |
| 676 | fn extract_function(&mut self, node: Node<'t>) { |
| 677 | stack_guard!(); |
| 678 | let name = self.extract_name(node); |
| 679 | if name == "<anonymous>" { |
| 680 | if let Some(body) = node.child_by_field_name("body") { |
| 681 | self.visit_function_body(body); |
| 682 | } |
| 683 | return; |
| 684 | } |
| 685 | let extra = Extra { |
| 686 | docstring: preceding_docstring(node, self.src), |
| 687 | signature: None, // no getSignature hook |
| 688 | visibility: Some(self.visibility_of(node)), |
| 689 | is_static: Some(self.is_static(node)), |
| 690 | return_type: self.return_type_of(node), |
| 691 | }; |
| 692 | let Some(row) = self.create_node("function", &name, node, extra) else { return }; |
| 693 | self.extract_php_type_refs(node, row); |
| 694 | // decorators: none. |
| 695 | self.stack.push(Scope { row, kind: "function", name }); |
| 696 | if let Some(body) = node.child_by_field_name("body") { |
| 697 | self.visit_function_body(body); |
| 698 | } |
| 699 | self.stack.pop(); |
| 700 | } |
| 701 | |
| 702 | fn extract_method(&mut self, node: Node<'t>) { |
| 703 | stack_guard!(); |
no test coverage detected