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