• Home
  • Raw
  • Download

Lines Matching refs:VISIT

1052 #define VISIT(ST, TYPE, V) \  macro
1152 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt()
1178 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1187 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1219 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt()
1221 VISIT(st, expr, s->v.AnnAssign.annotation); in symtable_visit_stmt()
1223 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt()
1227 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1228 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1231 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
1232 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt()
1238 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt()
1245 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt()
1252 VISIT(st, expr, s->v.Raise.exc); in symtable_visit_stmt()
1254 VISIT(st, expr, s->v.Raise.cause); in symtable_visit_stmt()
1265 VISIT(st, expr, s->v.Assert.test); in symtable_visit_stmt()
1267 VISIT(st, expr, s->v.Assert.msg); in symtable_visit_stmt()
1337 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
1366 VISIT(st, arguments, s->v.AsyncFunctionDef.args); in symtable_visit_stmt()
1376 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1377 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1399 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr()
1400 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
1403 VISIT(st, expr, e->v.UnaryOp.operand); in symtable_visit_expr()
1416 VISIT(st, arguments, e->v.Lambda.args); in symtable_visit_expr()
1417 VISIT(st, expr, e->v.Lambda.body); in symtable_visit_expr()
1423 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr()
1424 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr()
1425 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
1452 VISIT(st, expr, e->v.Yield.value); in symtable_visit_expr()
1456 VISIT(st, expr, e->v.YieldFrom.value); in symtable_visit_expr()
1460 VISIT(st, expr, e->v.Await.value); in symtable_visit_expr()
1464 VISIT(st, expr, e->v.Compare.left); in symtable_visit_expr()
1468 VISIT(st, expr, e->v.Call.func); in symtable_visit_expr()
1473 VISIT(st, expr, e->v.FormattedValue.value); in symtable_visit_expr()
1475 VISIT(st, expr, e->v.FormattedValue.format_spec); in symtable_visit_expr()
1490 VISIT(st, expr, e->v.Attribute.value); in symtable_visit_expr()
1493 VISIT(st, expr, e->v.Subscript.value); in symtable_visit_expr()
1494 VISIT(st, slice, e->v.Subscript.slice); in symtable_visit_expr()
1497 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
1565 VISIT(st, expr, arg->annotation); in symtable_visit_argannotations()
1578 VISIT(st, expr, a->vararg->annotation); in symtable_visit_annotations()
1580 VISIT(st, expr, a->kwarg->annotation); in symtable_visit_annotations()
1584 VISIT(st, expr, returns); in symtable_visit_annotations()
1616 VISIT(st, expr, eh->v.ExceptHandler.type); in symtable_visit_excepthandler()
1627 VISIT(st, expr, item->context_expr); in symtable_visit_withitem()
1629 VISIT(st, expr, item->optional_vars); in symtable_visit_withitem()
1678 VISIT(st, expr, lc->target); in symtable_visit_comprehension()
1679 VISIT(st, expr, lc->iter); in symtable_visit_comprehension()
1691 VISIT(st, expr, k->value); in symtable_visit_keyword()
1702 VISIT(st, expr, s->v.Slice.lower) in symtable_visit_slice()
1704 VISIT(st, expr, s->v.Slice.upper) in symtable_visit_slice()
1706 VISIT(st, expr, s->v.Slice.step) in symtable_visit_slice()
1712 VISIT(st, expr, s->v.Index.value) in symtable_visit_slice()
1728 VISIT(st, expr, outermost->iter); in symtable_handle_comprehension()
1749 VISIT(st, expr, outermost->target); in symtable_handle_comprehension()
1753 VISIT(st, expr, value); in symtable_handle_comprehension()
1754 VISIT(st, expr, elt); in symtable_handle_comprehension()