Lines Matching refs:AsyncFunctionDef
1437 if (!symtable_add_def(st, s->v.AsyncFunctionDef.name, DEF_LOCAL, LOCATION(s))) in symtable_visit_stmt()
1439 if (s->v.AsyncFunctionDef.args->defaults) in symtable_visit_stmt()
1440 VISIT_SEQ(st, expr, s->v.AsyncFunctionDef.args->defaults); in symtable_visit_stmt()
1441 if (s->v.AsyncFunctionDef.args->kw_defaults) in symtable_visit_stmt()
1443 s->v.AsyncFunctionDef.args->kw_defaults); in symtable_visit_stmt()
1444 if (!symtable_visit_annotations(st, s, s->v.AsyncFunctionDef.args, in symtable_visit_stmt()
1445 s->v.AsyncFunctionDef.returns)) in symtable_visit_stmt()
1447 if (s->v.AsyncFunctionDef.decorator_list) in symtable_visit_stmt()
1448 VISIT_SEQ(st, expr, s->v.AsyncFunctionDef.decorator_list); in symtable_visit_stmt()
1449 if (!symtable_enter_block(st, s->v.AsyncFunctionDef.name, in symtable_visit_stmt()
1455 VISIT(st, arguments, s->v.AsyncFunctionDef.args); in symtable_visit_stmt()
1456 VISIT_SEQ(st, stmt, s->v.AsyncFunctionDef.body); in symtable_visit_stmt()