Searched refs:astfold_expr (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 391 static int astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 459 CALL(astfold_expr, expr_ty, node_->v.Expression.body); in astfold_mod() 468 astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_expr() function 472 CALL_SEQ(astfold_expr, expr_ty, node_->v.BoolOp.values); in astfold_expr() 475 CALL(astfold_expr, expr_ty, node_->v.BinOp.left); in astfold_expr() 476 CALL(astfold_expr, expr_ty, node_->v.BinOp.right); in astfold_expr() 480 CALL(astfold_expr, expr_ty, node_->v.UnaryOp.operand); in astfold_expr() 485 CALL(astfold_expr, expr_ty, node_->v.Lambda.body); in astfold_expr() 488 CALL(astfold_expr, expr_ty, node_->v.IfExp.test); in astfold_expr() 489 CALL(astfold_expr, expr_ty, node_->v.IfExp.body); in astfold_expr() [all …]
|