Home
last modified time | relevance | path

Searched refs:astfold_stmt (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Python/
Dast_opt.c418 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, int optimize_);
474 CALL_SEQ(astfold_stmt, stmt_ty, stmts); in astfold_body()
502 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Interactive.body); in astfold_mod()
508 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.Suite.body); in astfold_mod()
679 astfold_stmt(stmt_ty node_, PyArena *ctx_, int optimize_) in astfold_stmt() function
722 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.body); in astfold_stmt()
723 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.orelse); in astfold_stmt()
730 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.body); in astfold_stmt()
731 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.orelse); in astfold_stmt()
735 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.body); in astfold_stmt()
[all …]