Lines Matching refs:AsyncFunctionDef
1442 if (!symtable_add_def(st, s->v.AsyncFunctionDef.name, DEF_LOCAL, LOCATION(s))) in symtable_visit_stmt()
1444 if (s->v.AsyncFunctionDef.args->defaults) in symtable_visit_stmt()
1445 VISIT_SEQ(st, expr, s->v.AsyncFunctionDef.args->defaults); in symtable_visit_stmt()
1446 if (s->v.AsyncFunctionDef.args->kw_defaults) in symtable_visit_stmt()
1448 s->v.AsyncFunctionDef.args->kw_defaults); in symtable_visit_stmt()
1449 if (!symtable_visit_annotations(st, s, s->v.AsyncFunctionDef.args, in symtable_visit_stmt()
1450 s->v.AsyncFunctionDef.returns)) in symtable_visit_stmt()
1452 if (s->v.AsyncFunctionDef.decorator_list) in symtable_visit_stmt()
1453 VISIT_SEQ(st, expr, s->v.AsyncFunctionDef.decorator_list); in symtable_visit_stmt()
1454 if (!symtable_enter_block(st, s->v.AsyncFunctionDef.name, in symtable_visit_stmt()
1460 VISIT(st, arguments, s->v.AsyncFunctionDef.args); in symtable_visit_stmt()
1461 VISIT_SEQ(st, stmt, s->v.AsyncFunctionDef.body); in symtable_visit_stmt()