Handles AsyncFunctionDef node and set context.
(self, node: ast.AsyncFunctionDef)
| 498 | self.current_function = None |
| 499 | |
| 500 | def visit_AsyncFunctionDef(self, node: ast.AsyncFunctionDef) -> None: |
| 501 | """Handles AsyncFunctionDef node and set context.""" |
| 502 | self.visit_FunctionDef(node) # type: ignore[arg-type] |
| 503 | |
| 504 | def visit_TypeAlias(self, node: ast.TypeAlias) -> None: |
| 505 | """Handles TypeAlias node and picks up a variable comment. |
nothing calls this directly
no test coverage detected