Home
last modified time | relevance | path

Searched refs:AsyncFunctionDef_kind (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ast.h177 enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3, enumerator
/third_party/python/Python/
Dast.c911 case AsyncFunctionDef_kind: in validate_stmt()
Dast_opt.c884 case AsyncFunctionDef_kind: in astfold_stmt()
Dsymtable.c1436 case AsyncFunctionDef_kind: in symtable_visit_stmt()
Dcompile.c2604 assert(s->kind == AsyncFunctionDef_kind); in compiler_function()
4153 case AsyncFunctionDef_kind: in compiler_visit_stmt()
DPython-ast.c2012 p->kind = AsyncFunctionDef_kind; in _PyAST_AsyncFunctionDef()
3735 case AsyncFunctionDef_kind: in ast2obj_stmt()
/third_party/python/Parser/
Daction_helpers.c768 if (function_def->kind == AsyncFunctionDef_kind) { in _PyPegen_function_def_decorators()