Lines Matching refs:VISIT
946 #define VISIT(ST, TYPE, V) \ macro
1039 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1055 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1058 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1059 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1063 VISIT(st, expr, s->v.Print.dest); in symtable_visit_stmt()
1067 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
1068 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt()
1074 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt()
1081 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt()
1088 VISIT(st, expr, s->v.Raise.type); in symtable_visit_stmt()
1090 VISIT(st, expr, s->v.Raise.inst); in symtable_visit_stmt()
1092 VISIT(st, expr, s->v.Raise.tback); in symtable_visit_stmt()
1106 VISIT(st, expr, s->v.Assert.test); in symtable_visit_stmt()
1108 VISIT(st, expr, s->v.Assert.msg); in symtable_visit_stmt()
1125 VISIT(st, expr, s->v.Exec.body); in symtable_visit_stmt()
1130 VISIT(st, expr, s->v.Exec.globals); in symtable_visit_stmt()
1132 VISIT(st, expr, s->v.Exec.locals); in symtable_visit_stmt()
1165 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
1173 VISIT(st, expr, s->v.With.context_expr); in symtable_visit_stmt()
1175 VISIT(st, expr, s->v.With.optional_vars); in symtable_visit_stmt()
1191 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr()
1192 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
1195 VISIT(st, expr, e->v.UnaryOp.operand); in symtable_visit_expr()
1212 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr()
1213 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr()
1214 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
1224 VISIT(st, expr, e->v.ListComp.elt); in symtable_visit_expr()
1241 VISIT(st, expr, e->v.Yield.value); in symtable_visit_expr()
1252 VISIT(st, expr, e->v.Compare.left); in symtable_visit_expr()
1256 VISIT(st, expr, e->v.Call.func); in symtable_visit_expr()
1260 VISIT(st, expr, e->v.Call.starargs); in symtable_visit_expr()
1262 VISIT(st, expr, e->v.Call.kwargs); in symtable_visit_expr()
1265 VISIT(st, expr, e->v.Repr.value); in symtable_visit_expr()
1273 VISIT(st, expr, e->v.Attribute.value); in symtable_visit_expr()
1276 VISIT(st, expr, e->v.Subscript.value); in symtable_visit_expr()
1277 VISIT(st, slice, e->v.Subscript.slice); in symtable_visit_expr()
1389 VISIT(st, expr, eh->v.ExceptHandler.type); in symtable_visit_excepthandler()
1391 VISIT(st, expr, eh->v.ExceptHandler.name); in symtable_visit_excepthandler()
1440 VISIT(st, expr, lc->target); in symtable_visit_comprehension()
1441 VISIT(st, expr, lc->iter); in symtable_visit_comprehension()
1450 VISIT(st, expr, k->value); in symtable_visit_keyword()
1461 VISIT(st, expr, s->v.Slice.lower) in symtable_visit_slice()
1463 VISIT(st, expr, s->v.Slice.upper) in symtable_visit_slice()
1465 VISIT(st, expr, s->v.Slice.step) in symtable_visit_slice()
1471 VISIT(st, expr, s->v.Index.value) in symtable_visit_slice()
1506 VISIT(st, expr, outermost->iter); in symtable_handle_comprehension()