Lines Matching refs:AsyncFunctionDef
1998 p->v.AsyncFunctionDef.name = name; in _PyAST_AsyncFunctionDef()
1999 p->v.AsyncFunctionDef.args = args; in _PyAST_AsyncFunctionDef()
2000 p->v.AsyncFunctionDef.body = body; in _PyAST_AsyncFunctionDef()
2001 p->v.AsyncFunctionDef.decorator_list = decorator_list; in _PyAST_AsyncFunctionDef()
2002 p->v.AsyncFunctionDef.returns = returns; in _PyAST_AsyncFunctionDef()
2003 p->v.AsyncFunctionDef.type_comment = type_comment; in _PyAST_AsyncFunctionDef()
3691 value = ast2obj_identifier(state, o->v.AsyncFunctionDef.name); in ast2obj_stmt()
3696 value = ast2obj_arguments(state, o->v.AsyncFunctionDef.args); in ast2obj_stmt()
3701 value = ast2obj_list(state, (asdl_seq*)o->v.AsyncFunctionDef.body, in ast2obj_stmt()
3708 (asdl_seq*)o->v.AsyncFunctionDef.decorator_list, in ast2obj_stmt()
3714 value = ast2obj_expr(state, o->v.AsyncFunctionDef.returns); in ast2obj_stmt()
3719 value = ast2obj_string(state, o->v.AsyncFunctionDef.type_comment); in ast2obj_stmt()