MCPcopy Create free account
hub / github.com/Glyphack/enderpy / AsyncFunctionDef

Class AsyncFunctionDef

parser/src/ast.rs:937–946  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

935// https://docs.python.org/3/library/ast.html#ast.AsyncFunctionDef
936#[derive(Debug, Clone)]
937pub 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
948impl AsyncFunctionDef {
949 #[allow(clippy::too_many_arguments)]

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected