• Home
  • Raw
  • Download

Lines Matching refs:VISIT

1113 #define VISIT(ST, TYPE, V) \  macro
1195 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt()
1221 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1230 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1263 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt()
1265 VISIT(st, expr, s->v.AnnAssign.annotation); in symtable_visit_stmt()
1267 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt()
1271 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1272 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1275 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
1276 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt()
1282 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt()
1289 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt()
1296 VISIT(st, expr, s->v.Raise.exc); in symtable_visit_stmt()
1298 VISIT(st, expr, s->v.Raise.cause); in symtable_visit_stmt()
1309 VISIT(st, expr, s->v.Assert.test); in symtable_visit_stmt()
1311 VISIT(st, expr, s->v.Assert.msg); in symtable_visit_stmt()
1385 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
1414 VISIT(st, arguments, s->v.AsyncFunctionDef.args); in symtable_visit_stmt()
1424 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1425 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1522 VISIT(st, expr, e->v.NamedExpr.value); in symtable_handle_namedexpr()
1523 VISIT(st, expr, e->v.NamedExpr.target); in symtable_handle_namedexpr()
1544 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr()
1545 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
1548 VISIT(st, expr, e->v.UnaryOp.operand); in symtable_visit_expr()
1561 VISIT(st, arguments, e->v.Lambda.args); in symtable_visit_expr()
1562 VISIT(st, expr, e->v.Lambda.body); in symtable_visit_expr()
1568 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr()
1569 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr()
1570 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
1597 VISIT(st, expr, e->v.Yield.value); in symtable_visit_expr()
1601 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
1605 VISIT(st, expr, e->v.Await.value); in symtable_visit_expr()
1609 VISIT(st, expr, e->v.Compare.left); in symtable_visit_expr()
1613 VISIT(st, expr, e->v.Call.func); in symtable_visit_expr()
1618 VISIT(st, expr, e->v.FormattedValue.value); in symtable_visit_expr()
1620 VISIT(st, expr, e->v.FormattedValue.format_spec); in symtable_visit_expr()
1630 VISIT(st, expr, e->v.Attribute.value); in symtable_visit_expr()
1633 VISIT(st, expr, e->v.Subscript.value); in symtable_visit_expr()
1634 VISIT(st, expr, e->v.Subscript.slice); in symtable_visit_expr()
1637 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
1641 VISIT(st, expr, e->v.Slice.lower) in symtable_visit_expr()
1643 VISIT(st, expr, e->v.Slice.upper) in symtable_visit_expr()
1645 VISIT(st, expr, e->v.Slice.step) in symtable_visit_expr()
1713 VISIT(st, expr, arg->annotation); in symtable_visit_argannotations()
1727 VISIT(st, expr, a->vararg->annotation); in symtable_visit_annotations()
1729 VISIT(st, expr, a->kwarg->annotation); in symtable_visit_annotations()
1733 VISIT(st, expr, returns); in symtable_visit_annotations()
1767 VISIT(st, expr, eh->v.ExceptHandler.type); in symtable_visit_excepthandler()
1778 VISIT(st, expr, item->context_expr); in symtable_visit_withitem()
1780 VISIT(st, expr, item->optional_vars); in symtable_visit_withitem()
1830 VISIT(st, expr, lc->target); in symtable_visit_comprehension()
1833 VISIT(st, expr, lc->iter); in symtable_visit_comprehension()
1846 VISIT(st, expr, k->value); in symtable_visit_keyword()
1861 VISIT(st, expr, outermost->iter); in symtable_handle_comprehension()
1881 VISIT(st, expr, outermost->target); in symtable_handle_comprehension()
1887 VISIT(st, expr, value); in symtable_handle_comprehension()
1888 VISIT(st, expr, elt); in symtable_handle_comprehension()