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

Method extract_method

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

Source from the content-addressed store, hash-verified

418 }
419
420 fn extract_method(&mut self, node: Node<'t>) {
421 stack_guard!();
422 let name = self.extract_name(node);
423 let extra = Extra {
424 docstring: preceding_docstring(node, self.src),
425 signature: self.signature_of(node),
426 is_async: Some(self.is_async(node)),
427 is_static: Some(self.is_static(node)),
428 };
429 let Some(row) = self.create_node("method", &name, node, extra) else { return };
430 self.extract_decorators_for(node, row);
431 self.stack.push(Scope { row, kind: "method", name });
432 if let Some(body) = node.child_by_field_name("body") {
433 self.visit_function_body(body);
434 }
435 self.stack.pop();
436 }
437
438 fn extract_class(&mut self, node: Node<'t>) {
439 stack_guard!();

Callers 1

visit_nodeMethod · 0.45

Calls 8

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

Tested by

no test coverage detected