Lines Matching refs:VISIT
1328 #define VISIT(C, TYPE, V) {\ macro
1502 VISIT(c, expr, st->v.Expr.value); in compiler_body()
1507 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1661 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1745 VISIT(c, annexpr, annotation) in compiler_visit_argannotation()
1748 VISIT(c, expr, annotation); in compiler_visit_argannotation()
2177 VISIT(c, expr, e->v.Compare.left); in compiler_jump_if()
2179 VISIT(c, expr, in compiler_jump_if()
2188 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_jump_if()
2213 VISIT(c, expr, e); in compiler_jump_if()
2232 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp()
2235 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
2346 VISIT(c, expr, s->v.For.iter); in compiler_for()
2350 VISIT(c, expr, s->v.For.target); in compiler_for()
2395 VISIT(c, expr, s->v.AsyncFor.iter); in compiler_async_for()
2408 VISIT(c, expr, s->v.AsyncFor.target); in compiler_async_for()
2663 VISIT(c, expr, handler->v.ExceptHandler.type); in compiler_try_except()
2942 VISIT(c, expr, s->v.Assert.msg); in compiler_assert()
2954 VISIT(c, expr, value); in compiler_visit_stmt_expr()
2964 VISIT(c, expr, value); in compiler_visit_stmt_expr()
2991 VISIT(c, expr, s->v.Return.value); in compiler_visit_stmt()
3002 VISIT(c, expr, s->v.Assign.value); in compiler_visit_stmt()
3006 VISIT(c, expr, in compiler_visit_stmt()
3023 VISIT(c, expr, s->v.Raise.exc); in compiler_visit_stmt()
3026 VISIT(c, expr, s->v.Raise.cause); in compiler_visit_stmt()
3304 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop()
3307 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n)); in compiler_boolop()
3326 VISIT(c, expr, elt->v.Starred.value); in starunpack_helper()
3330 VISIT(c, expr, elt); in starunpack_helper()
3434 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3450 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); in compiler_subdict()
3451 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3476 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_dict()
3502 VISIT(c, expr, e->v.Compare.left); in compiler_compare()
3506 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, 0)); in compiler_compare()
3515 VISIT(c, expr, in compiler_compare()
3524 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_compare()
3562 VISIT(c, expr, meth->v.Attribute.value); in maybe_optimize_method_call()
3575 VISIT(c, expr, e->v.Call.func); in compiler_call()
3611 VISIT(c, expr, e->v.FormattedValue.value); in compiler_formatted_value()
3625 VISIT(c, expr, e->v.FormattedValue.format_spec); in compiler_formatted_value()
3644 VISIT(c, expr, kw->value); in compiler_subkwargs()
3663 VISIT(c, expr, kw->value); in compiler_subkwargs()
3705 VISIT(c, expr, elt->v.Starred.value); in compiler_call_helper()
3709 VISIT(c, expr, elt); in compiler_call_helper()
3740 VISIT(c, expr, kw->value); in compiler_call_helper()
3845 VISIT(c, expr, gen->iter); in compiler_sync_comprehension_generator()
3851 VISIT(c, expr, gen->target); in compiler_sync_comprehension_generator()
3873 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3878 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3882 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3888 VISIT(c, expr, val); in compiler_sync_comprehension_generator()
3889 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3943 VISIT(c, expr, gen->iter); in compiler_async_comprehension_generator()
3957 VISIT(c, expr, gen->target); in compiler_async_comprehension_generator()
3991 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
3996 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
4000 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
4006 VISIT(c, expr, val); in compiler_async_comprehension_generator()
4007 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
4099 VISIT(c, expr, outermost->iter); in compiler_comprehension()
4189 VISIT(c, expr, k->value); in compiler_visit_keyword()
4250 VISIT(c, expr, item->context_expr); in compiler_async_with()
4266 VISIT(c, expr, item->optional_vars); in compiler_async_with()
4344 VISIT(c, expr, item->context_expr); in compiler_with()
4354 VISIT(c, expr, item->optional_vars); in compiler_with()
4405 VISIT(c, expr, e->v.BinOp.left); in compiler_visit_expr()
4406 VISIT(c, expr, e->v.BinOp.right); in compiler_visit_expr()
4410 VISIT(c, expr, e->v.UnaryOp.operand); in compiler_visit_expr()
4433 VISIT(c, expr, e->v.Yield.value); in compiler_visit_expr()
4447 VISIT(c, expr, e->v.YieldFrom.value); in compiler_visit_expr()
4460 VISIT(c, expr, e->v.Await.value); in compiler_visit_expr()
4494 VISIT(c, expr, e->v.Attribute.value); in compiler_visit_expr()
4521 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4525 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4532 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4536 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4583 VISIT(c, expr, auge); in compiler_augassign()
4584 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4587 VISIT(c, expr, auge); in compiler_augassign()
4594 VISIT(c, expr, auge); in compiler_augassign()
4595 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4598 VISIT(c, expr, auge); in compiler_augassign()
4603 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4618 VISIT(c, expr, e); in check_ann_expr()
4709 VISIT(c, expr, s->v.AnnAssign.value); in compiler_annassign()
4710 VISIT(c, expr, targ); in compiler_annassign()
4719 VISIT(c, annexpr, s->v.AnnAssign.annotation) in compiler_annassign()
4722 VISIT(c, expr, s->v.AnnAssign.annotation); in compiler_annassign()
4861 VISIT(c, expr, s->v.Slice.lower); in compiler_slice()
4868 VISIT(c, expr, s->v.Slice.upper); in compiler_slice()
4876 VISIT(c, expr, s->v.Slice.step); in compiler_slice()
4890 VISIT(c, expr, s->v.Index.value); in compiler_visit_nested_slice()
4909 VISIT(c, expr, s->v.Index.value); in compiler_visit_slice()