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

Method extract_function

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

Source from the content-addressed store, hash-verified

775 // --- extractors -----------------------------------------------------------------
776
777 fn extract_function(&mut self, node: Node<'t>) {
778 let name = self.extract_name(node);
779 if name == "<anonymous>" {
780 if let Some(body) = node.child_by_field_name("body") {
781 self.visit_function_body(body);
782 }
783 return;
784 }
785 let extra = Extra {
786 docstring: preceding_docstring(node, self.src),
787 signature: None, // getSignature reads the never-resolving 'parameter' field
788 visibility: Some(self.visibility_of(node)),
789 is_async: Some(self.is_async(node)), // present-false (dead hook)
790 is_static: Some(self.is_static(node)),
791 return_type: self.return_type_of(node),
792 ..Extra::default()
793 };
794 let Some(row) = self.create_node("function", &name, node, extra) else { return };
795 self.extract_type_annotations(node, row);
796 self.extract_decorators_for(node, row);
797 self.stack.push(Scope { row, kind: "function", name });
798 if let Some(body) = node.child_by_field_name("body") {
799 self.visit_function_body(body);
800 }
801 self.stack.pop();
802 }
803
804 fn extract_method(&mut self, node: Node<'t>) {
805 let name = self.extract_name(node);

Callers 2

visit_nodeMethod · 0.45

Calls 10

preceding_docstringFunction · 0.85
extract_nameMethod · 0.45
visit_function_bodyMethod · 0.45
visibility_ofMethod · 0.45
is_asyncMethod · 0.45
is_staticMethod · 0.45
return_type_ofMethod · 0.45
create_nodeMethod · 0.45

Tested by

no test coverage detected