Home
last modified time | relevance | path

Searched refs:AsyncFor (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Python/
H A Dast_opt.c928 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target); in astfold_stmt()
929 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.iter); in astfold_stmt()
930 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.body); in astfold_stmt()
931 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.orelse); in astfold_stmt()
H A Dast.c773 ret = validate_expr(state, stmt->v.AsyncFor.target, Store) && in validate_stmt()
774 validate_expr(state, stmt->v.AsyncFor.iter, Load) && in validate_stmt()
775 validate_body(state, stmt->v.AsyncFor.body, "AsyncFor") && in validate_stmt()
776 validate_stmts(state, stmt->v.AsyncFor.orelse); in validate_stmt()
H A Dsymtable.c1465 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1466 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1467 VISIT_SEQ(st, stmt, s->v.AsyncFor.body); in symtable_visit_stmt()
1468 if (s->v.AsyncFor.orelse) in symtable_visit_stmt()
1469 VISIT_SEQ(st, stmt, s->v.AsyncFor.orelse); in symtable_visit_stmt()
H A Dcompile.c1867 res = find_ann(st->v.AsyncFor.body) || in find_ann()
1868 find_ann(st->v.AsyncFor.orelse); in find_ann()
3151 VISIT(c, expr, s->v.AsyncFor.iter); in compiler_async_for()
3166 VISIT(c, expr, s->v.AsyncFor.target); in compiler_async_for()
3167 VISIT_SEQ(c, stmt, s->v.AsyncFor.body); in compiler_async_for()
3179 SET_LOC(c, s->v.AsyncFor.iter); in compiler_async_for()
H A DPython-ast.c1142 " | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)\n" in init_types()
1224 state->AsyncFor_type = make_type(state, "AsyncFor", state->stmt_type, in init_types()
1226 "AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)"); in init_types()
2218 "field 'target' is required for AsyncFor"); in _PyAST_AsyncFor()
2223 "field 'iter' is required for AsyncFor"); in _PyAST_AsyncFor()
2230 p->v.AsyncFor.target = target; in _PyAST_AsyncFor()
2231 p->v.AsyncFor.iter = iter; in _PyAST_AsyncFor()
2232 p->v.AsyncFor.body = body; in _PyAST_AsyncFor()
2233 p->v.AsyncFor.orelse = orelse; in _PyAST_AsyncFor()
2234 p->v.AsyncFor in _PyAST_AsyncFor()
[all...]
/third_party/python/Include/internal/
H A Dpycore_ast.h255 } AsyncFor; member

Completed in 26 milliseconds