• Home
  • Raw
  • Download

Lines Matching refs:VISIT

952 #define VISIT(ST, TYPE, V) \  macro
1045 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1061 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1064 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1065 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1069 VISIT(st, expr, s->v.Print.dest); in symtable_visit_stmt()
1073 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
1074 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt()
1080 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt()
1087 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt()
1094 VISIT(st, expr, s->v.Raise.type); in symtable_visit_stmt()
1096 VISIT(st, expr, s->v.Raise.inst); in symtable_visit_stmt()
1098 VISIT(st, expr, s->v.Raise.tback); in symtable_visit_stmt()
1112 VISIT(st, expr, s->v.Assert.test); in symtable_visit_stmt()
1114 VISIT(st, expr, s->v.Assert.msg); in symtable_visit_stmt()
1131 VISIT(st, expr, s->v.Exec.body); in symtable_visit_stmt()
1136 VISIT(st, expr, s->v.Exec.globals); in symtable_visit_stmt()
1138 VISIT(st, expr, s->v.Exec.locals); in symtable_visit_stmt()
1171 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
1179 VISIT(st, expr, s->v.With.context_expr); in symtable_visit_stmt()
1181 VISIT(st, expr, s->v.With.optional_vars); in symtable_visit_stmt()
1197 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr()
1198 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
1201 VISIT(st, expr, e->v.UnaryOp.operand); in symtable_visit_expr()
1218 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr()
1219 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr()
1220 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
1247 VISIT(st, expr, e->v.Yield.value); in symtable_visit_expr()
1258 VISIT(st, expr, e->v.Compare.left); in symtable_visit_expr()
1262 VISIT(st, expr, e->v.Call.func); in symtable_visit_expr()
1266 VISIT(st, expr, e->v.Call.starargs); in symtable_visit_expr()
1268 VISIT(st, expr, e->v.Call.kwargs); in symtable_visit_expr()
1271 VISIT(st, expr, e->v.Repr.value); in symtable_visit_expr()
1279 VISIT(st, expr, e->v.Attribute.value); in symtable_visit_expr()
1282 VISIT(st, expr, e->v.Subscript.value); in symtable_visit_expr()
1283 VISIT(st, slice, e->v.Subscript.slice); in symtable_visit_expr()
1395 VISIT(st, expr, eh->v.ExceptHandler.type); in symtable_visit_excepthandler()
1397 VISIT(st, expr, eh->v.ExceptHandler.name); in symtable_visit_excepthandler()
1445 VISIT(st, expr, lc->target); in symtable_visit_comprehension()
1446 VISIT(st, expr, lc->iter); in symtable_visit_comprehension()
1455 VISIT(st, expr, k->value); in symtable_visit_keyword()
1466 VISIT(st, expr, s->v.Slice.lower) in symtable_visit_slice()
1468 VISIT(st, expr, s->v.Slice.upper) in symtable_visit_slice()
1470 VISIT(st, expr, s->v.Slice.step) in symtable_visit_slice()
1476 VISIT(st, expr, s->v.Index.value) in symtable_visit_slice()
1511 VISIT(st, expr, outermost->iter); in symtable_handle_comprehension()
1561 VISIT(st, expr, e->v.ListComp.elt); in symtable_visit_listcomp()
1564 VISIT(st, expr, lc->target); in symtable_visit_listcomp()
1567 VISIT(st, expr, lc->iter); in symtable_visit_listcomp()
1572 VISIT(st, expr, lc->iter); in symtable_visit_listcomp()