MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / extract_function

Method extract_function

codegraph-kernel/src/ruby.rs:602–624  ·  view source on GitHub ↗
(&mut self, node: Node<'t>)

Source from the content-addressed store, hash-verified

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!();

Callers 2

visit_nodeMethod · 0.45

Calls 5

preceding_docstringFunction · 0.85
extract_nameMethod · 0.45
visit_function_bodyMethod · 0.45
visibility_ofMethod · 0.45
create_nodeMethod · 0.45

Tested by

no test coverage detected