• Home
  • Raw
  • Download

Lines Matching refs:VISIT

1141 #define VISIT(ST, TYPE, V) \  macro
1224 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt()
1251 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1260 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1295 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt()
1302 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt()
1306 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1307 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1310 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
1311 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt()
1317 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt()
1324 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt()
1330 VISIT(st, expr, s->v.Match.subject); in symtable_visit_stmt()
1335 VISIT(st, expr, s->v.Raise.exc); in symtable_visit_stmt()
1337 VISIT(st, expr, s->v.Raise.cause); in symtable_visit_stmt()
1348 VISIT(st, expr, s->v.Assert.test); in symtable_visit_stmt()
1350 VISIT(st, expr, s->v.Assert.msg); in symtable_visit_stmt()
1430 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
1460 VISIT(st, arguments, s->v.AsyncFunctionDef.args); in symtable_visit_stmt()
1470 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1471 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1574 VISIT(st, expr, e->v.NamedExpr.value); in symtable_handle_namedexpr()
1575 VISIT(st, expr, e->v.NamedExpr.target); in symtable_handle_namedexpr()
1599 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr()
1600 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
1603 VISIT(st, expr, e->v.UnaryOp.operand); in symtable_visit_expr()
1617 VISIT(st, arguments, e->v.Lambda.args); in symtable_visit_expr()
1618 VISIT(st, expr, e->v.Lambda.body); in symtable_visit_expr()
1624 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr()
1625 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr()
1626 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
1656 VISIT(st, expr, e->v.Yield.value); in symtable_visit_expr()
1666 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
1676 VISIT(st, expr, e->v.Await.value); in symtable_visit_expr()
1680 VISIT(st, expr, e->v.Compare.left); in symtable_visit_expr()
1684 VISIT(st, expr, e->v.Call.func); in symtable_visit_expr()
1689 VISIT(st, expr, e->v.FormattedValue.value); in symtable_visit_expr()
1691 VISIT(st, expr, e->v.FormattedValue.format_spec); in symtable_visit_expr()
1701 VISIT(st, expr, e->v.Attribute.value); in symtable_visit_expr()
1704 VISIT(st, expr, e->v.Subscript.value); in symtable_visit_expr()
1705 VISIT(st, expr, e->v.Subscript.slice); in symtable_visit_expr()
1708 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
1712 VISIT(st, expr, e->v.Slice.lower) in symtable_visit_expr()
1714 VISIT(st, expr, e->v.Slice.upper) in symtable_visit_expr()
1716 VISIT(st, expr, e->v.Slice.step) in symtable_visit_expr()
1752 VISIT(st, expr, p->v.MatchValue.value); in symtable_visit_pattern()
1773 VISIT(st, expr, p->v.MatchClass.cls); in symtable_visit_pattern()
1779 VISIT(st, pattern, p->v.MatchAs.pattern); in symtable_visit_pattern()
1834 VISIT(st, expr, annotation); in symtable_visit_annotation()
1852 VISIT(st, expr, arg->annotation); in symtable_visit_argannotations()
1873 VISIT(st, expr, a->vararg->annotation); in symtable_visit_annotations()
1875 VISIT(st, expr, a->kwarg->annotation); in symtable_visit_annotations()
1917 VISIT(st, expr, eh->v.ExceptHandler.type); in symtable_visit_excepthandler()
1928 VISIT(st, expr, item->context_expr); in symtable_visit_withitem()
1930 VISIT(st, expr, item->optional_vars); in symtable_visit_withitem()
1938 VISIT(st, pattern, m->pattern); in symtable_visit_match_case()
1940 VISIT(st, expr, m->guard); in symtable_visit_match_case()
1994 VISIT(st, expr, lc->target); in symtable_visit_comprehension()
1997 VISIT(st, expr, lc->iter); in symtable_visit_comprehension()
2010 VISIT(st, expr, k->value); in symtable_visit_keyword()
2025 VISIT(st, expr, outermost->iter); in symtable_handle_comprehension()
2059 VISIT(st, expr, outermost->target); in symtable_handle_comprehension()
2065 VISIT(st, expr, value); in symtable_handle_comprehension()
2066 VISIT(st, expr, elt); in symtable_handle_comprehension()