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

Method extract_function

codegraph-kernel/src/java.rs:629–653  ·  view source on GitHub ↗

extractFunction — only reachable for a method outside any class.

(&mut self, node: Node<'t>)

Source from the content-addressed store, hash-verified

627
628 /// extractFunction — only reachable for a method outside any class.
629 fn extract_function(&mut self, node: Node<'t>) {
630 let name = self.extract_name(node);
631 if name == "<anonymous>" {
632 if let Some(body) = node.child_by_field_name("body") {
633 self.visit_function_body(body);
634 }
635 return;
636 }
637 let extra = Extra {
638 docstring: preceding_docstring(node, self.src),
639 signature: self.signature_of(node),
640 visibility: self.visibility_of(node),
641 is_static: Some(self.is_static(node)),
642 return_type: self.normalize_java_type(node.child_by_field_name("type")),
643 ..Extra::default()
644 };
645 let Some(row) = self.create_node("function", &name, node, extra) else { return };
646 self.extract_type_annotations(node, row);
647 self.extract_decorators_for(node, row);
648 self.stack.push(Scope { row, kind: "function", name });
649 if let Some(body) = node.child_by_field_name("body") {
650 self.visit_function_body(body);
651 }
652 self.stack.pop();
653 }
654
655 fn extract_interface(&mut self, node: Node<'t>) {
656 let name = self.extract_name(node);

Callers 1

extract_methodMethod · 0.45

Calls 10

preceding_docstringFunction · 0.85
normalize_java_typeMethod · 0.80
extract_nameMethod · 0.45
visit_function_bodyMethod · 0.45
signature_ofMethod · 0.45
visibility_ofMethod · 0.45
is_staticMethod · 0.45
create_nodeMethod · 0.45

Tested by

no test coverage detected