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

Method extract_method

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

Source from the content-addressed store, hash-verified

624 }
625
626 fn extract_method(&mut self, node: Node<'t>) {
627 stack_guard!();
628 let name = self.extract_name(node);
629 let extra = Extra {
630 docstring: preceding_docstring(node, self.src),
631 signature: None,
632 visibility: Some(self.visibility_of(node)),
633 };
634 let Some(row) = self.create_node("method", &name, node, extra) else { return };
635 self.stack.push(Scope { row, kind: "method", name });
636 if let Some(body) = node.child_by_field_name("body") {
637 self.visit_function_body(body);
638 }
639 self.stack.pop();
640 }
641
642 fn extract_class(&mut self, node: Node<'t>) {
643 stack_guard!();

Callers 1

visit_nodeMethod · 0.45

Calls 5

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

Tested by

no test coverage detected