Lines Matching refs:VISIT_SEQ
1117 #define VISIT_SEQ(ST, TYPE, SEQ) { \ macro
1183 VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); in symtable_visit_stmt()
1190 VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); in symtable_visit_stmt()
1196 VISIT_SEQ(st, stmt, s->v.FunctionDef.body); in symtable_visit_stmt()
1204 VISIT_SEQ(st, expr, s->v.ClassDef.bases); in symtable_visit_stmt()
1205 VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); in symtable_visit_stmt()
1207 VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); in symtable_visit_stmt()
1213 VISIT_SEQ(st, stmt, s->v.ClassDef.body); in symtable_visit_stmt()
1226 VISIT_SEQ(st, expr, s->v.Delete.targets); in symtable_visit_stmt()
1229 VISIT_SEQ(st, expr, s->v.Assign.targets); in symtable_visit_stmt()
1277 VISIT_SEQ(st, stmt, s->v.For.body); in symtable_visit_stmt()
1279 VISIT_SEQ(st, stmt, s->v.For.orelse); in symtable_visit_stmt()
1283 VISIT_SEQ(st, stmt, s->v.While.body); in symtable_visit_stmt()
1285 VISIT_SEQ(st, stmt, s->v.While.orelse); in symtable_visit_stmt()
1290 VISIT_SEQ(st, stmt, s->v.If.body); in symtable_visit_stmt()
1292 VISIT_SEQ(st, stmt, s->v.If.orelse); in symtable_visit_stmt()
1303 VISIT_SEQ(st, stmt, s->v.Try.body); in symtable_visit_stmt()
1304 VISIT_SEQ(st, stmt, s->v.Try.orelse); in symtable_visit_stmt()
1305 VISIT_SEQ(st, excepthandler, s->v.Try.handlers); in symtable_visit_stmt()
1306 VISIT_SEQ(st, stmt, s->v.Try.finalbody); in symtable_visit_stmt()
1314 VISIT_SEQ(st, alias, s->v.Import.names); in symtable_visit_stmt()
1317 VISIT_SEQ(st, alias, s->v.ImportFrom.names); in symtable_visit_stmt()
1393 VISIT_SEQ(st, withitem, s->v.With.items); in symtable_visit_stmt()
1394 VISIT_SEQ(st, stmt, s->v.With.body); in symtable_visit_stmt()
1400 VISIT_SEQ(st, expr, s->v.AsyncFunctionDef.args->defaults); in symtable_visit_stmt()
1408 VISIT_SEQ(st, expr, s->v.AsyncFunctionDef.decorator_list); in symtable_visit_stmt()
1415 VISIT_SEQ(st, stmt, s->v.AsyncFunctionDef.body); in symtable_visit_stmt()
1420 VISIT_SEQ(st, withitem, s->v.AsyncWith.items); in symtable_visit_stmt()
1421 VISIT_SEQ(st, stmt, s->v.AsyncWith.body); in symtable_visit_stmt()
1426 VISIT_SEQ(st, stmt, s->v.AsyncFor.body); in symtable_visit_stmt()
1428 VISIT_SEQ(st, stmt, s->v.AsyncFor.orelse); in symtable_visit_stmt()
1541 VISIT_SEQ(st, expr, e->v.BoolOp.values); in symtable_visit_expr()
1554 VISIT_SEQ(st, expr, e->v.Lambda.args->defaults); in symtable_visit_expr()
1574 VISIT_SEQ(st, expr, e->v.Dict.values); in symtable_visit_expr()
1577 VISIT_SEQ(st, expr, e->v.Set.elts); in symtable_visit_expr()
1610 VISIT_SEQ(st, expr, e->v.Compare.comparators); in symtable_visit_expr()
1614 VISIT_SEQ(st, expr, e->v.Call.args); in symtable_visit_expr()
1623 VISIT_SEQ(st, expr, e->v.JoinedStr.values); in symtable_visit_expr()
1662 VISIT_SEQ(st, expr, e->v.List.elts); in symtable_visit_expr()
1665 VISIT_SEQ(st, expr, e->v.Tuple.elts); in symtable_visit_expr()
1771 VISIT_SEQ(st, stmt, eh->v.ExceptHandler.body); in symtable_visit_excepthandler()
1835 VISIT_SEQ(st, expr, lc->ifs); in symtable_visit_comprehension()
1884 VISIT_SEQ(st, expr, outermost->ifs); in symtable_handle_comprehension()