• Home
  • Raw
  • Download

Lines Matching refs:VISIT

1284 #define VISIT(C, TYPE, V) {\  macro
1458 VISIT(c, expr, st->v.Expr.value); in compiler_body()
1463 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1617 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1688 VISIT(c, expr, annotation); in compiler_visit_argannotation()
2049 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp()
2051 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp()
2054 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
2139 VISIT(c, expr, s->v.If.test); in compiler_if()
2165 VISIT(c, expr, s->v.For.iter); in compiler_for()
2169 VISIT(c, expr, s->v.For.target); in compiler_for()
2210 VISIT(c, expr, s->v.AsyncFor.iter); in compiler_async_for()
2225 VISIT(c, expr, s->v.AsyncFor.target); in compiler_async_for()
2299 VISIT(c, expr, s->v.While.test); in compiler_while()
2487 VISIT(c, expr, handler->v.ExceptHandler.type); in compiler_try_except()
2765 VISIT(c, expr, s->v.Assert.test); in compiler_assert()
2772 VISIT(c, expr, s->v.Assert.msg); in compiler_assert()
2784 VISIT(c, expr, value); in compiler_visit_stmt_expr()
2794 VISIT(c, expr, value); in compiler_visit_stmt_expr()
2821 VISIT(c, expr, s->v.Return.value); in compiler_visit_stmt()
2832 VISIT(c, expr, s->v.Assign.value); in compiler_visit_stmt()
2836 VISIT(c, expr, in compiler_visit_stmt()
2853 VISIT(c, expr, s->v.Raise.exc); in compiler_visit_stmt()
2856 VISIT(c, expr, s->v.Raise.cause); in compiler_visit_stmt()
3164 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop()
3167 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n)); in compiler_boolop()
3186 VISIT(c, expr, elt->v.Starred.value); in starunpack_helper()
3190 VISIT(c, expr, elt); in starunpack_helper()
3294 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3310 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); in compiler_subdict()
3311 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_subdict()
3336 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_dict()
3367 VISIT(c, expr, e->v.Compare.left); in compiler_compare()
3374 VISIT(c, expr, in compiler_compare()
3386 VISIT(c, expr, in compiler_compare()
3389 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n - 1)); in compiler_compare()
3408 VISIT(c, expr, e->v.Call.func); in compiler_call()
3444 VISIT(c, expr, e->v.FormattedValue.value); in compiler_formatted_value()
3458 VISIT(c, expr, e->v.FormattedValue.format_spec); in compiler_formatted_value()
3477 VISIT(c, expr, kw->value); in compiler_subkwargs()
3496 VISIT(c, expr, kw->value); in compiler_subkwargs()
3538 VISIT(c, expr, elt->v.Starred.value); in compiler_call_helper()
3542 VISIT(c, expr, elt); in compiler_call_helper()
3573 VISIT(c, expr, kw->value); in compiler_call_helper()
3678 VISIT(c, expr, gen->iter); in compiler_sync_comprehension_generator()
3684 VISIT(c, expr, gen->target); in compiler_sync_comprehension_generator()
3690 VISIT(c, expr, e); in compiler_sync_comprehension_generator()
3706 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3711 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3715 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3721 VISIT(c, expr, val); in compiler_sync_comprehension_generator()
3722 VISIT(c, expr, elt); in compiler_sync_comprehension_generator()
3778 VISIT(c, expr, gen->iter); in compiler_async_comprehension_generator()
3794 VISIT(c, expr, gen->target); in compiler_async_comprehension_generator()
3821 VISIT(c, expr, e); in compiler_async_comprehension_generator()
3837 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
3842 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
3846 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
3852 VISIT(c, expr, val); in compiler_async_comprehension_generator()
3853 VISIT(c, expr, elt); in compiler_async_comprehension_generator()
3942 VISIT(c, expr, outermost->iter); in compiler_comprehension()
4034 VISIT(c, expr, k->value); in compiler_visit_keyword()
4116 VISIT(c, expr, item->context_expr); in compiler_async_with()
4132 VISIT(c, expr, item->optional_vars); in compiler_async_with()
4210 VISIT(c, expr, item->context_expr); in compiler_with()
4220 VISIT(c, expr, item->optional_vars); in compiler_with()
4271 VISIT(c, expr, e->v.BinOp.left); in compiler_visit_expr()
4272 VISIT(c, expr, e->v.BinOp.right); in compiler_visit_expr()
4276 VISIT(c, expr, e->v.UnaryOp.operand); in compiler_visit_expr()
4299 VISIT(c, expr, e->v.Yield.value); in compiler_visit_expr()
4313 VISIT(c, expr, e->v.YieldFrom.value); in compiler_visit_expr()
4326 VISIT(c, expr, e->v.Await.value); in compiler_visit_expr()
4360 VISIT(c, expr, e->v.Attribute.value); in compiler_visit_expr()
4387 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4391 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4398 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4402 VISIT(c, expr, e->v.Subscript.value); in compiler_visit_expr()
4449 VISIT(c, expr, auge); in compiler_augassign()
4450 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4453 VISIT(c, expr, auge); in compiler_augassign()
4460 VISIT(c, expr, auge); in compiler_augassign()
4461 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4464 VISIT(c, expr, auge); in compiler_augassign()
4469 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
4484 VISIT(c, expr, e); in check_ann_expr()
4575 VISIT(c, expr, s->v.AnnAssign.value); in compiler_annassign()
4576 VISIT(c, expr, targ); in compiler_annassign()
4588 VISIT(c, expr, s->v.AnnAssign.annotation); in compiler_annassign()
4721 VISIT(c, expr, s->v.Slice.lower); in compiler_slice()
4728 VISIT(c, expr, s->v.Slice.upper); in compiler_slice()
4736 VISIT(c, expr, s->v.Slice.step); in compiler_slice()
4750 VISIT(c, expr, s->v.Index.value); in compiler_visit_nested_slice()
4769 VISIT(c, expr, s->v.Index.value); in compiler_visit_slice()