Lines Matching refs:VISIT
1111 #define VISIT(C, TYPE, V) {\ macro
1172 VISIT(c, expr, st->v.Expr.value); in compiler_body()
1177 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1322 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1345 VISIT(c, expr, arg); in compiler_arguments()
1482 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp()
1484 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp()
1487 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
1548 VISIT(c, expr, s->v.Print.dest); in compiler_print()
1555 VISIT(c, expr, e); in compiler_print()
1560 VISIT(c, expr, e); in compiler_print()
1602 VISIT(c, expr, s->v.If.test); in compiler_if()
1628 VISIT(c, expr, s->v.For.iter); in compiler_for()
1632 VISIT(c, expr, s->v.For.target); in compiler_for()
1676 VISIT(c, expr, s->v.While.test); in compiler_while()
1857 VISIT(c, expr, handler->v.ExceptHandler.type); in compiler_try_except()
1863 VISIT(c, expr, handler->v.ExceptHandler.name); in compiler_try_except()
2059 VISIT(c, expr, s->v.Assert.test); in compiler_assert()
2066 VISIT(c, expr, s->v.Assert.msg); in compiler_assert()
2092 VISIT(c, expr, s->v.Return.value); in compiler_visit_stmt()
2103 VISIT(c, expr, s->v.Assign.value); in compiler_visit_stmt()
2107 VISIT(c, expr, in compiler_visit_stmt()
2124 VISIT(c, expr, s->v.Raise.type); in compiler_visit_stmt()
2127 VISIT(c, expr, s->v.Raise.inst); in compiler_visit_stmt()
2130 VISIT(c, expr, s->v.Raise.tback); in compiler_visit_stmt()
2148 VISIT(c, expr, s->v.Exec.body); in compiler_visit_stmt()
2150 VISIT(c, expr, s->v.Exec.globals); in compiler_visit_stmt()
2152 VISIT(c, expr, s->v.Exec.locals); in compiler_visit_stmt()
2166 VISIT(c, expr, s->v.Expr.value); in compiler_visit_stmt()
2171 VISIT(c, expr, s->v.Expr.value); in compiler_visit_stmt()
2457 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop()
2460 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n)); in compiler_boolop()
2500 VISIT(c, expr, e->v.Compare.left); in compiler_compare()
2507 VISIT(c, expr, in compiler_compare()
2519 VISIT(c, expr, in compiler_compare()
2522 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n - 1)); in compiler_compare()
2543 VISIT(c, expr, e->v.Call.func); in compiler_call()
2551 VISIT(c, expr, e->v.Call.starargs); in compiler_call()
2555 VISIT(c, expr, e->v.Call.kwargs); in compiler_call()
2596 VISIT(c, expr, l->iter); in compiler_listcomp_generator()
2601 VISIT(c, expr, l->target); in compiler_listcomp_generator()
2607 VISIT(c, expr, e); in compiler_listcomp_generator()
2618 VISIT(c, expr, elt); in compiler_listcomp_generator()
2684 VISIT(c, expr, gen->iter); in compiler_comprehension_generator()
2690 VISIT(c, expr, gen->target); in compiler_comprehension_generator()
2696 VISIT(c, expr, e); in compiler_comprehension_generator()
2712 VISIT(c, expr, elt); in compiler_comprehension_generator()
2717 VISIT(c, expr, elt); in compiler_comprehension_generator()
2723 VISIT(c, expr, val); in compiler_comprehension_generator()
2724 VISIT(c, expr, elt); in compiler_comprehension_generator()
2788 VISIT(c, expr, outermost_iter); in compiler_comprehension()
2848 VISIT(c, expr, k->value); in compiler_visit_keyword()
2914 VISIT(c, expr, s->v.With.context_expr); in compiler_with()
2927 VISIT(c, expr, s->v.With.optional_vars); in compiler_with()
2973 VISIT(c, expr, e->v.BinOp.left); in compiler_visit_expr()
2974 VISIT(c, expr, e->v.BinOp.right); in compiler_visit_expr()
2978 VISIT(c, expr, e->v.UnaryOp.operand); in compiler_visit_expr()
2989 VISIT(c, expr, in compiler_visit_expr()
2991 VISIT(c, expr, in compiler_visit_expr()
3013 VISIT(c, expr, e->v.Yield.value); in compiler_visit_expr()
3025 VISIT(c, expr, e->v.Repr.value); in compiler_visit_expr()
3037 VISIT(c, expr, e->v.Attribute.value); in compiler_visit_expr()
3064 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
3068 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
3075 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
3079 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
3114 VISIT(c, expr, auge); in compiler_augassign()
3115 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
3118 VISIT(c, expr, auge); in compiler_augassign()
3125 VISIT(c, expr, auge); in compiler_augassign()
3126 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
3129 VISIT(c, expr, auge); in compiler_augassign()
3134 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
3248 VISIT(c, expr, s->v.Slice.lower); in compiler_slice()
3255 VISIT(c, expr, s->v.Slice.upper); in compiler_slice()
3263 VISIT(c, expr, s->v.Slice.step); in compiler_slice()
3279 VISIT(c, expr, s->v.Slice.lower); in compiler_simple_slice()
3285 VISIT(c, expr, s->v.Slice.upper); in compiler_simple_slice()
3331 VISIT(c, expr, s->v.Index.value); in compiler_visit_nested_slice()
3350 VISIT(c, expr, s->v.Index.value); in compiler_visit_slice()