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_opt.c669 case AsyncFunctionDef_kind: in astfold_stmt()
Dast.c843 case AsyncFunctionDef_kind: in validate_stmt()
Dsymtable.c1441 case AsyncFunctionDef_kind: in symtable_visit_stmt()
Dcompile.c2332 assert(s->kind == AsyncFunctionDef_kind); in compiler_function()
3574 case AsyncFunctionDef_kind: in compiler_visit_stmt()
DPython-ast.c1997 p->kind = AsyncFunctionDef_kind; in _PyAST_AsyncFunctionDef()
3687 case AsyncFunctionDef_kind: in ast2obj_stmt()
/third_party/python/Parser/
Dpegen.c2222 if (function_def->kind == AsyncFunctionDef_kind) { in _PyPegen_function_def_decorators()