Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dast_opt.c673 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target); in astfold_stmt()
674 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.iter); 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()
Dsymtable.c1424 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1425 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1426 VISIT_SEQ(st, stmt, s->v.AsyncFor.body); in symtable_visit_stmt()
1427 if (s->v.AsyncFor.orelse) in symtable_visit_stmt()
1428 VISIT_SEQ(st, stmt, s->v.AsyncFor.orelse); in symtable_visit_stmt()
DPython-ast.c2224 AsyncFor(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, in AsyncFor() function
2243 p->v.AsyncFor.target = target; in AsyncFor()
2244 p->v.AsyncFor.iter = iter; in AsyncFor()
2245 p->v.AsyncFor.body = body; in AsyncFor()
2246 p->v.AsyncFor.orelse = orelse; in AsyncFor()
2247 p->v.AsyncFor.type_comment = type_comment; in AsyncFor()
3675 value = ast2obj_expr(state, o->v.AsyncFor.target); in ast2obj_stmt()
3680 value = ast2obj_expr(state, o->v.AsyncFor.iter); in ast2obj_stmt()
3685 value = ast2obj_list(state, o->v.AsyncFor.body, ast2obj_stmt); in ast2obj_stmt()
3690 value = ast2obj_list(state, o->v.AsyncFor.orelse, ast2obj_stmt); in ast2obj_stmt()
[all …]
Dast.c392 return validate_expr(stmt->v.AsyncFor.target, Store) && in validate_stmt()
393 validate_expr(stmt->v.AsyncFor.iter, Load) && in validate_stmt()
394 validate_body(stmt->v.AsyncFor.body, "AsyncFor") && in validate_stmt()
395 validate_stmts(stmt->v.AsyncFor.orelse); in validate_stmt()
4103 return AsyncFor(target, expression, suite_seq, seq, type_comment, in ast_for_for_stmt()
Dcompile.c1578 res = find_ann(st->v.AsyncFor.body) || in find_ann()
1579 find_ann(st->v.AsyncFor.orelse); in find_ann()
2796 VISIT(c, expr, s->v.AsyncFor.iter); in compiler_async_for()
2811 VISIT(c, expr, s->v.AsyncFor.target); in compiler_async_for()
2812 VISIT_SEQ(c, stmt, s->v.AsyncFor.body); in compiler_async_for()
/external/python/cpython3/Parser/
DPython.asdl33 | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)
/external/python/cpython3/Include/
DPython-ast.h154 } AsyncFor; member
506 #define AsyncFor(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) _Py_AsyncFor(a0, a1, a2, a3, a4, a5, a6, a… macro
/external/python/cpython3/Doc/library/
Dast.rst1499 .. class:: AsyncFor(target, iter, body, orelse, type_comment)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst1717 Fix the ``col_offset`` attribute for ast nodes ``ast.AsyncFor``,