(self, n: ast3.AsyncFunctionDef)
| 904 | # AsyncFunctionDef(identifier name, arguments args, |
| 905 | # stmt* body, expr* decorator_list, expr? returns, string? type_comment) |
| 906 | def visit_AsyncFunctionDef(self, n: ast3.AsyncFunctionDef) -> FuncDef | Decorator: |
| 907 | return self.do_func_def(n, is_coroutine=True) |
| 908 | |
| 909 | def do_func_def( |
| 910 | self, n: ast3.FunctionDef | ast3.AsyncFunctionDef, is_coroutine: bool = False |
nothing calls this directly
no test coverage detected