Searched refs:optional_vars (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Python/ |
H A D | ast.c | 794 (item->optional_vars && !validate_expr(state, item->optional_vars, Store))) in validate_stmt() 805 (item->optional_vars && !validate_expr(state, item->optional_vars, Store))) in validate_stmt()
|
H A D | Python-ast.c | 237 Py_CLEAR(state->optional_vars); in _PyAST_Fini() 336 if ((state->optional_vars = PyUnicode_InternFromString("optional_vars")) == NULL) return 0; in init_identifiers() 708 "optional_vars", 1773 "withitem(expr context_expr, expr? optional_vars)"); in init_types() 1776 if (PyObject_SetAttr(state->withitem_type, state->optional_vars, Py_None) in init_types() 3392 _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena *arena) in _PyAST_withitem() argument 3404 p->optional_vars = optional_vars; in _PyAST_withitem() 5219 value = ast2obj_expr(state, o->optional_vars); in ast2obj_withitem() 11125 expr_ty optional_vars; obj2ast_withitem() local [all...] |
H A D | symtable.c | 1921 if (item->optional_vars) { in symtable_visit_withitem() 1922 VISIT(st, expr, item->optional_vars); in symtable_visit_withitem()
|
H A D | ast_opt.c | 1012 CALL_OPT(astfold_expr, expr_ty, node_->optional_vars); in astfold_withitem()
|
H A D | compile.c | 5681 if (item->optional_vars) { in compiler_async_with() 5682 VISIT(c, expr, item->optional_vars); in compiler_async_with() 5778 if (item->optional_vars) { in compiler_with() 5779 VISIT(c, expr, item->optional_vars); in compiler_with()
|
/third_party/python/Include/internal/ |
H A D | pycore_ast_state.h | 224 PyObject *optional_vars; member
|
H A D | pycore_ast.h | 560 expr_ty optional_vars; member 818 withitem_ty _PyAST_withitem(expr_ty context_expr, expr_ty optional_vars,
|
/third_party/python/Lib/ |
H A D | ast.py | 1614 if node.optional_vars: 1616 self.traverse(node.optional_vars)
|
Completed in 37 milliseconds