Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dast_opt.c390 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state);
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()
618 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) in astfold_stmt() function
667 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.body); in astfold_stmt()
668 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.For.orelse); in astfold_stmt()
675 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.body); in astfold_stmt()
676 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.AsyncFor.orelse); in astfold_stmt()
680 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.body); in astfold_stmt()
681 CALL_SEQ(astfold_stmt, stmt_ty, node_->v.While.orelse); in astfold_stmt()
[all …]