Lines Matching refs:FunctionDef
1209 if (!symtable_add_def(st, s->v.FunctionDef.name, DEF_LOCAL, LOCATION(s))) in symtable_visit_stmt()
1211 if (s->v.FunctionDef.args->defaults) in symtable_visit_stmt()
1212 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt()
1213 if (s->v.FunctionDef.args->kw_defaults) in symtable_visit_stmt()
1214 VISIT_SEQ_WITH_NULL(st, expr, s->v.FunctionDef.args->kw_defaults); in symtable_visit_stmt()
1215 if (!symtable_visit_annotations(st, s, s->v.FunctionDef.args, in symtable_visit_stmt()
1216 s->v.FunctionDef.returns)) in symtable_visit_stmt()
1218 if (s->v.FunctionDef.decorator_list) in symtable_visit_stmt()
1219 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1220 if (!symtable_enter_block(st, s->v.FunctionDef.name, in symtable_visit_stmt()
1224 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt()
1225 VISIT_SEQ(st, stmt, s->v.FunctionDef.body); in symtable_visit_stmt()