(&mut self, node: Node<'t>)
| 596 | // --- extractors -------------------------------------------------------------- |
| 597 | |
| 598 | fn extract_function(&mut self, node: Node<'t>) { |
| 599 | let name = self.extract_name(node); |
| 600 | if name == "<anonymous>" { |
| 601 | if let Some(body) = node.child_by_field_name("body") { |
| 602 | self.visit_function_body(body); |
| 603 | } |
| 604 | return; |
| 605 | } |
| 606 | let extra = Extra { |
| 607 | docstring: preceding_docstring(node, self.src), |
| 608 | signature: None, // no getSignature hook |
| 609 | visibility: Some(self.visibility_of(node)), |
| 610 | }; |
| 611 | let Some(row) = self.create_node("function", &name, node, extra) else { return }; |
| 612 | // (ruby ∉ TYPE_ANNOTATION_LANGUAGES; decorators are a structural no-op) |
| 613 | self.stack.push(Scope { row, kind: "function", name }); |
| 614 | if let Some(body) = node.child_by_field_name("body") { |
| 615 | self.visit_function_body(body); |
| 616 | } |
| 617 | self.stack.pop(); |
| 618 | // `parameters` are NEVER walked — a call in a default value emits nothing. |
| 619 | } |
| 620 | |
| 621 | fn extract_method(&mut self, node: Node<'t>) { |
| 622 | let name = self.extract_name(node); |
no test coverage detected