(&mut self, node: Node<'t>)
| 700 | } |
| 701 | |
| 702 | fn extract_method(&mut self, node: Node<'t>) { |
| 703 | stack_guard!(); |
| 704 | let name = self.extract_name(node); |
| 705 | let extra = Extra { |
| 706 | docstring: preceding_docstring(node, self.src), |
| 707 | signature: None, |
| 708 | visibility: Some(self.visibility_of(node)), |
| 709 | is_static: Some(self.is_static(node)), |
| 710 | return_type: self.return_type_of(node), |
| 711 | }; |
| 712 | let Some(row) = self.create_node("method", &name, node, extra) else { return }; |
| 713 | self.extract_php_type_refs(node, row); |
| 714 | self.stack.push(Scope { row, kind: "method", name }); |
| 715 | // Bodiless (interface/abstract) methods still mint nodes, no walk. |
| 716 | if let Some(body) = node.child_by_field_name("body") { |
| 717 | self.visit_function_body(body); |
| 718 | } |
| 719 | self.stack.pop(); |
| 720 | } |
| 721 | |
| 722 | fn extract_class(&mut self, node: Node<'t>, kind: &'static str) { |
| 723 | stack_guard!(); |
no test coverage detected