Lines Matching refs:AsyncFunctionDef
2013 p->v.AsyncFunctionDef.name = name; in _PyAST_AsyncFunctionDef()
2014 p->v.AsyncFunctionDef.args = args; in _PyAST_AsyncFunctionDef()
2015 p->v.AsyncFunctionDef.body = body; in _PyAST_AsyncFunctionDef()
2016 p->v.AsyncFunctionDef.decorator_list = decorator_list; in _PyAST_AsyncFunctionDef()
2017 p->v.AsyncFunctionDef.returns = returns; in _PyAST_AsyncFunctionDef()
2018 p->v.AsyncFunctionDef.type_comment = type_comment; in _PyAST_AsyncFunctionDef()
3739 value = ast2obj_identifier(state, o->v.AsyncFunctionDef.name); in ast2obj_stmt()
3744 value = ast2obj_arguments(state, o->v.AsyncFunctionDef.args); in ast2obj_stmt()
3749 value = ast2obj_list(state, (asdl_seq*)o->v.AsyncFunctionDef.body, in ast2obj_stmt()
3756 (asdl_seq*)o->v.AsyncFunctionDef.decorator_list, in ast2obj_stmt()
3762 value = ast2obj_expr(state, o->v.AsyncFunctionDef.returns); in ast2obj_stmt()
3767 value = ast2obj_string(state, o->v.AsyncFunctionDef.type_comment); in ast2obj_stmt()