(&mut self, node: Node<'t>)
| 781 | // --- extractors ----------------------------------------------------------------- |
| 782 | |
| 783 | fn extract_function(&mut self, node: Node<'t>) { |
| 784 | stack_guard!(); |
| 785 | let name = self.extract_name(node); |
| 786 | if name == "<anonymous>" { |
| 787 | if let Some(body) = node.child_by_field_name("body") { |
| 788 | self.visit_function_body(body); |
| 789 | } |
| 790 | return; |
| 791 | } |
| 792 | let extra = Extra { |
| 793 | docstring: preceding_docstring(node, self.src), |
| 794 | signature: None, // getSignature reads the never-resolving 'parameter' field |
| 795 | visibility: Some(self.visibility_of(node)), |
| 796 | is_async: Some(self.is_async(node)), // present-false (dead hook) |
| 797 | is_static: Some(self.is_static(node)), |
| 798 | return_type: self.return_type_of(node), |
| 799 | ..Extra::default() |
| 800 | }; |
| 801 | let Some(row) = self.create_node("function", &name, node, extra) else { return }; |
| 802 | self.extract_type_annotations(node, row); |
| 803 | self.extract_decorators_for(node, row); |
| 804 | self.stack.push(Scope { row, kind: "function", name }); |
| 805 | if let Some(body) = node.child_by_field_name("body") { |
| 806 | self.visit_function_body(body); |
| 807 | } |
| 808 | self.stack.pop(); |
| 809 | } |
| 810 | |
| 811 | fn extract_method(&mut self, node: Node<'t>) { |
| 812 | stack_guard!(); |
no test coverage detected