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

Method extract_function

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

Source from the content-addressed store, hash-verified

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

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