(self, n: ast3.FunctionDef)
| 899 | # arguments = (arg* args, arg? vararg, arg* kwonlyargs, expr* kw_defaults, |
| 900 | # arg? kwarg, expr* defaults) |
| 901 | def visit_FunctionDef(self, n: ast3.FunctionDef) -> FuncDef | Decorator: |
| 902 | return self.do_func_def(n) |
| 903 | |
| 904 | # AsyncFunctionDef(identifier name, arguments args, |
| 905 | # stmt* body, expr* decorator_list, expr? returns, string? type_comment) |
nothing calls this directly
no test coverage detected