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