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

Method extract_function

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

Source from the content-addressed store, hash-verified

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

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