Home
last modified time | relevance | path

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

/third_party/python/Python/
Dast_opt.c713 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target); in astfold_stmt()
714 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.iter); in astfold_stmt()
715 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.body); in astfold_stmt()
716 CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.orelse); in astfold_stmt()
Dast.c731 ret = validate_expr(state, stmt->v.AsyncFor.target, Store) && in validate_stmt()
732 validate_expr(state, stmt->v.AsyncFor.iter, Load) && in validate_stmt()
733 validate_body(state, stmt->v.AsyncFor.body, "AsyncFor") && in validate_stmt()
734 validate_stmts(state, stmt->v.AsyncFor.orelse); in validate_stmt()
Dsymtable.c1470 VISIT(st, expr, s->v.AsyncFor.target); in symtable_visit_stmt()
1471 VISIT(st, expr, s->v.AsyncFor.iter); in symtable_visit_stmt()
1472 VISIT_SEQ(st, stmt, s->v.AsyncFor.body); in symtable_visit_stmt()
1473 if (s->v.AsyncFor.orelse) in symtable_visit_stmt()
1474 VISIT_SEQ(st, stmt, s->v.AsyncFor.orelse); in symtable_visit_stmt()
Dcompile.c1687 res = find_ann(st->v.AsyncFor.body) || in find_ann()
1688 find_ann(st->v.AsyncFor.orelse); in find_ann()
2910 VISIT(c, expr, s->v.AsyncFor.iter); in compiler_async_for()
2925 VISIT(c, expr, s->v.AsyncFor.target); in compiler_async_for()
2926 VISIT_SEQ(c, stmt, s->v.AsyncFor.body); in compiler_async_for()
2936 SET_LOC(c, s->v.AsyncFor.iter); in compiler_async_for()
DPython-ast.c2215 p->v.AsyncFor.target = target; in _PyAST_AsyncFor()
2216 p->v.AsyncFor.iter = iter; in _PyAST_AsyncFor()
2217 p->v.AsyncFor.body = body; in _PyAST_AsyncFor()
2218 p->v.AsyncFor.orelse = orelse; in _PyAST_AsyncFor()
2219 p->v.AsyncFor.type_comment = type_comment; in _PyAST_AsyncFor()
3880 value = ast2obj_expr(state, o->v.AsyncFor.target); in ast2obj_stmt()
3885 value = ast2obj_expr(state, o->v.AsyncFor.iter); in ast2obj_stmt()
3890 value = ast2obj_list(state, (asdl_seq*)o->v.AsyncFor.body, in ast2obj_stmt()
3896 value = ast2obj_list(state, (asdl_seq*)o->v.AsyncFor.orelse, in ast2obj_stmt()
3902 value = ast2obj_string(state, o->v.AsyncFor.type_comment); in ast2obj_stmt()
/third_party/python/Parser/
DPython.asdl33 | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)
/third_party/python/Include/internal/
Dpycore_ast.h255 } AsyncFor; member
/third_party/python/Doc/library/
Dast.rst1873 .. class:: AsyncFor(target, iter, body, orelse, type_comment)
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst1717 Fix the ``col_offset`` attribute for ast nodes ``ast.AsyncFor``,