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

Method extract_method

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

Source from the content-addressed store, hash-verified

802 }
803
804 fn extract_method(&mut self, node: Node<'t>) {
805 let name = self.extract_name(node);
806 let extra = Extra {
807 docstring: preceding_docstring(node, self.src),
808 signature: None,
809 visibility: Some(self.visibility_of(node)),
810 is_async: Some(self.is_async(node)),
811 is_static: Some(self.is_static(node)),
812 return_type: self.return_type_of(node),
813 ..Extra::default()
814 };
815 let Some(row) = self.create_node("method", &name, node, extra) else { return };
816 self.extract_type_annotations(node, row);
817 self.extract_decorators_for(node, row);
818 self.stack.push(Scope { row, kind: "method", name });
819 if let Some(body) = node.child_by_field_name("body") {
820 self.visit_function_body(body);
821 }
822 self.stack.pop();
823 }
824
825 fn extract_class(&mut self, node: Node<'t>) {
826 let name = self.extract_name(node);

Callers 1

visit_nodeMethod · 0.45

Calls 10

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

Tested by

no test coverage detected