Searched refs:CALL_SEQ (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 406 #define CALL_SEQ(FUNC, TYPE, ARG) { \ macro 430 CALL_SEQ(astfold_stmt, stmt_ty, stmts); in astfold_body() 456 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Interactive.body); in astfold_mod() 472 CALL_SEQ(astfold_expr, expr_ty, node_->v.BoolOp.values); in astfold_expr() 493 CALL_SEQ(astfold_expr, expr_ty, node_->v.Dict.keys); in astfold_expr() 494 CALL_SEQ(astfold_expr, expr_ty, node_->v.Dict.values); in astfold_expr() 497 CALL_SEQ(astfold_expr, expr_ty, node_->v.Set.elts); in astfold_expr() 501 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.ListComp.generators); in astfold_expr() 505 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.SetComp.generators); in astfold_expr() 510 CALL_SEQ(astfold_comprehension, comprehension_ty, node_->v.DictComp.generators); in astfold_expr() [all …]
|