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

Method extract_function

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

Source from the content-addressed store, hash-verified

390 // --- extractors --------------------------------------------------------------
391
392 fn extract_function(&mut self, node: Node<'t>) {
393 let name = self.extract_name(node);
394 if name == "<anonymous>" {
395 if let Some(body) = node.child_by_field_name("body") {
396 self.visit_function_body(body);
397 }
398 return;
399 }
400 let extra = Extra {
401 docstring: preceding_docstring(node, self.src),
402 signature: self.signature_of(node),
403 is_async: Some(self.is_async(node)),
404 is_static: Some(self.is_static(node)),
405 };
406 let Some(row) = self.create_node("function", &name, node, extra) else { return };
407 // (python is not a TYPE_ANNOTATION language — no type refs)
408 self.extract_decorators_for(node, row);
409 self.stack.push(Scope { row, kind: "function", name });
410 if let Some(body) = node.child_by_field_name("body") {
411 self.visit_function_body(body);
412 }
413 self.stack.pop();
414 }
415
416 fn extract_method(&mut self, node: Node<'t>) {
417 let name = self.extract_name(node);

Callers 2

visit_nodeMethod · 0.45

Calls 8

preceding_docstringFunction · 0.85
extract_nameMethod · 0.45
visit_function_bodyMethod · 0.45
signature_ofMethod · 0.45
is_asyncMethod · 0.45
is_staticMethod · 0.45
create_nodeMethod · 0.45

Tested by

no test coverage detected