Lines Matching refs:astfold_stmt
629 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
663 CALL_SEQ(astfold_stmt, stmt, stmts);
690 CALL_SEQ(astfold_stmt, stmt, node_->v.Interactive.body);
868 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)
922 CALL_SEQ(astfold_stmt, stmt, node_->v.For.body);
923 CALL_SEQ(astfold_stmt, stmt, node_->v.For.orelse);
930 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.body);
931 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.orelse);
935 CALL_SEQ(astfold_stmt, stmt, node_->v.While.body);
936 CALL_SEQ(astfold_stmt, stmt, node_->v.While.orelse);
940 CALL_SEQ(astfold_stmt, stmt, node_->v.If.body);
941 CALL_SEQ(astfold_stmt, stmt, node_->v.If.orelse);
945 CALL_SEQ(astfold_stmt, stmt, node_->v.With.body);
949 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncWith.body);
956 CALL_SEQ(astfold_stmt, stmt, node_->v.Try.body);
958 CALL_SEQ(astfold_stmt, stmt, node_->v.Try.orelse);
959 CALL_SEQ(astfold_stmt, stmt, node_->v.Try.finalbody);
962 CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.body);
964 CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.orelse);
965 CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.finalbody);
1000 CALL_SEQ(astfold_stmt, stmt, node_->v.ExceptHandler.body);
1067 CALL_SEQ(astfold_stmt, stmt, node_->body);