| 935 | // https://docs.python.org/3/library/ast.html#ast.AsyncFunctionDef |
| 936 | #[derive(Debug, Clone)] |
| 937 | pub struct AsyncFunctionDef { |
| 938 | pub node: Node, |
| 939 | pub name: StrId, |
| 940 | pub args: Arguments, |
| 941 | pub body: Vec<Statement>, |
| 942 | pub decorator_list: Vec<Expression>, |
| 943 | pub returns: Option<Expression>, |
| 944 | pub type_comment: Option<String>, |
| 945 | pub type_params: Vec<TypeParam>, |
| 946 | } |
| 947 | |
| 948 | impl AsyncFunctionDef { |
| 949 | #[allow(clippy::too_many_arguments)] |
no outgoing calls
no test coverage detected