• Home
  • Raw
  • Download

Lines Matching refs:_res

945     mod_ty _res = NULL;  in file_rule()  local
962 _res = _PyPegen_make_module ( p , a ); in file_rule()
963 if (_res == NULL && PyErr_Occurred()) { in file_rule()
974 _res = NULL; in file_rule()
977 return _res; in file_rule()
992 mod_ty _res = NULL; in interactive_rule() local
1006 _res = _PyAST_Interactive ( a , p -> arena ); in interactive_rule()
1007 if (_res == NULL && PyErr_Occurred()) { in interactive_rule()
1018 _res = NULL; in interactive_rule()
1021 return _res; in interactive_rule()
1036 mod_ty _res = NULL; in eval_rule() local
1056 _res = _PyAST_Expression ( a , p -> arena ); in eval_rule()
1057 if (_res == NULL && PyErr_Occurred()) { in eval_rule()
1068 _res = NULL; in eval_rule()
1071 return _res; in eval_rule()
1086 mod_ty _res = NULL; in func_type_rule() local
1118 _res = _PyAST_FunctionType ( a , b , p -> arena ); in func_type_rule()
1119 if (_res == NULL && PyErr_Occurred()) { in func_type_rule()
1130 _res = NULL; in func_type_rule()
1133 return _res; in func_type_rule()
1148 expr_ty _res = NULL; in fstring_rule() local
1162 _res = star_expressions_var; in fstring_rule()
1169 _res = NULL; in fstring_rule()
1172 return _res; in fstring_rule()
1194 asdl_expr_seq* _res = NULL; in type_expressions_rule() local
1226_res = ( asdl_expr_seq * ) _PyPegen_seq_append_to_end ( p , CHECK ( asdl_seq * , _PyPegen_seq_appe… in type_expressions_rule()
1227 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1259 _res = ( asdl_expr_seq * ) _PyPegen_seq_append_to_end ( p , a , b ); in type_expressions_rule()
1260 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1292 _res = ( asdl_expr_seq * ) _PyPegen_seq_append_to_end ( p , a , b ); in type_expressions_rule()
1293 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1328_res = ( asdl_expr_seq * ) _PyPegen_seq_append_to_end ( p , CHECK ( asdl_seq * , _PyPegen_singleto… in type_expressions_rule()
1329 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1355 _res = ( asdl_expr_seq * ) _PyPegen_singleton_seq ( p , a ); in type_expressions_rule()
1356 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1382 _res = ( asdl_expr_seq * ) _PyPegen_singleton_seq ( p , a ); in type_expressions_rule()
1383 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1406 _res = a; in type_expressions_rule()
1407 if (_res == NULL && PyErr_Occurred()) { in type_expressions_rule()
1418 _res = NULL; in type_expressions_rule()
1421 return _res; in type_expressions_rule()
1436 asdl_stmt_seq* _res = NULL; in statements_rule() local
1450 _res = ( asdl_stmt_seq * ) _PyPegen_seq_flatten ( p , a ); in statements_rule()
1451 if (_res == NULL && PyErr_Occurred()) { in statements_rule()
1462 _res = NULL; in statements_rule()
1465 return _res; in statements_rule()
1480 asdl_stmt_seq* _res = NULL; in statement_rule() local
1494 _res = ( asdl_stmt_seq * ) _PyPegen_singleton_seq ( p , a ); in statement_rule()
1495 if (_res == NULL && PyErr_Occurred()) { in statement_rule()
1518 _res = a; in statement_rule()
1519 if (_res == NULL && PyErr_Occurred()) { in statement_rule()
1530 _res = NULL; in statement_rule()
1533 return _res; in statement_rule()
1548 asdl_stmt_seq* _res = NULL; in statement_newline_rule() local
1574 _res = ( asdl_stmt_seq * ) _PyPegen_singleton_seq ( p , a ); in statement_newline_rule()
1575 if (_res == NULL && PyErr_Occurred()) { in statement_newline_rule()
1598 _res = simple_stmts_var; in statement_newline_rule()
1626_res = ( asdl_stmt_seq * ) _PyPegen_singleton_seq ( p , CHECK ( stmt_ty , _PyAST_Pass ( EXTRA ) ) … in statement_newline_rule()
1627 if (_res == NULL && PyErr_Occurred()) { in statement_newline_rule()
1650 _res = _PyPegen_interactive_exit ( p ); in statement_newline_rule()
1651 if (_res == NULL && PyErr_Occurred()) { in statement_newline_rule()
1662 _res = NULL; in statement_newline_rule()
1665 return _res; in statement_newline_rule()
1680 asdl_stmt_seq* _res = NULL; in simple_stmts_rule() local
1699 _res = ( asdl_stmt_seq * ) _PyPegen_singleton_seq ( p , a ); in simple_stmts_rule()
1700 if (_res == NULL && PyErr_Occurred()) { in simple_stmts_rule()
1730 _res = a; in simple_stmts_rule()
1731 if (_res == NULL && PyErr_Occurred()) { in simple_stmts_rule()
1742 _res = NULL; in simple_stmts_rule()
1745 return _res; in simple_stmts_rule()
1773 stmt_ty _res = NULL; in simple_stmt_rule() local
1774 if (_PyPegen_is_memoized(p, simple_stmt_type, &_res)) { in simple_stmt_rule()
1776 return _res; in simple_stmt_rule()
1800 _res = assignment_var; in simple_stmt_rule()
1828 _res = _PyAST_Expr ( e , EXTRA ); in simple_stmt_rule()
1829 if (_res == NULL && PyErr_Occurred()) { in simple_stmt_rule()
1854 _res = return_stmt_var; in simple_stmt_rule()
1875 _res = import_stmt_var; in simple_stmt_rule()
1896 _res = raise_stmt_var; in simple_stmt_rule()
1924 _res = _PyAST_Pass ( EXTRA ); in simple_stmt_rule()
1925 if (_res == NULL && PyErr_Occurred()) { in simple_stmt_rule()
1950 _res = del_stmt_var; in simple_stmt_rule()
1971 _res = yield_stmt_var; in simple_stmt_rule()
1992 _res = assert_stmt_var; in simple_stmt_rule()
2020 _res = _PyAST_Break ( EXTRA ); in simple_stmt_rule()
2021 if (_res == NULL && PyErr_Occurred()) { in simple_stmt_rule()
2053 _res = _PyAST_Continue ( EXTRA ); in simple_stmt_rule()
2054 if (_res == NULL && PyErr_Occurred()) { in simple_stmt_rule()
2079 _res = global_stmt_var; in simple_stmt_rule()
2100 _res = nonlocal_stmt_var; in simple_stmt_rule()
2107 _res = NULL; in simple_stmt_rule()
2109 _PyPegen_insert_memo(p, _mark, simple_stmt_type, _res); in simple_stmt_rule()
2111 return _res; in simple_stmt_rule()
2134 stmt_ty _res = NULL; in compound_stmt_rule() local
2150 _res = function_def_var; in compound_stmt_rule()
2171 _res = if_stmt_var; in compound_stmt_rule()
2192 _res = class_def_var; in compound_stmt_rule()
2213 _res = with_stmt_var; in compound_stmt_rule()
2234 _res = for_stmt_var; in compound_stmt_rule()
2255 _res = try_stmt_var; in compound_stmt_rule()
2276 _res = while_stmt_var; in compound_stmt_rule()
2295 _res = match_stmt_var; in compound_stmt_rule()
2302 _res = NULL; in compound_stmt_rule()
2305 return _res; in compound_stmt_rule()
2325 stmt_ty _res = NULL; in assignment_rule() local
2366_res = CHECK_VERSION ( stmt_ty , 6 , "Variable annotation syntax is" , _PyAST_AnnAssign ( CHECK ( … in assignment_rule()
2367 if (_res == NULL && PyErr_Occurred()) { in assignment_rule()
2408_res = CHECK_VERSION ( stmt_ty , 6 , "Variable annotations syntax is" , _PyAST_AnnAssign ( a , b ,… in assignment_rule()
2409 if (_res == NULL && PyErr_Occurred()) { in assignment_rule()
2449 _res = _PyAST_Assign ( a , b , NEW_TYPE_COMMENT ( p , tc ) , EXTRA ); in assignment_rule()
2450 if (_res == NULL && PyErr_Occurred()) { in assignment_rule()
2491 _res = _PyAST_AugAssign ( a , b -> kind , c , EXTRA ); in assignment_rule()
2492 if (_res == NULL && PyErr_Occurred()) { in assignment_rule()
2519 _res = invalid_assignment_var; in assignment_rule()
2526 _res = NULL; in assignment_rule()
2529 return _res; in assignment_rule()
2557 AugOperator* _res = NULL; in augassign_rule() local
2571 _res = _PyPegen_augoperator ( p , Add ); in augassign_rule()
2572 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2595 _res = _PyPegen_augoperator ( p , Sub ); in augassign_rule()
2596 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2619 _res = _PyPegen_augoperator ( p , Mult ); in augassign_rule()
2620 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2643_res = CHECK_VERSION ( AugOperator * , 5 , "The '@' operator is" , _PyPegen_augoperator ( p , MatM… in augassign_rule()
2644 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2667 _res = _PyPegen_augoperator ( p , Div ); in augassign_rule()
2668 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2691 _res = _PyPegen_augoperator ( p , Mod ); in augassign_rule()
2692 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2715 _res = _PyPegen_augoperator ( p , BitAnd ); in augassign_rule()
2716 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2739 _res = _PyPegen_augoperator ( p , BitOr ); in augassign_rule()
2740 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2763 _res = _PyPegen_augoperator ( p , BitXor ); in augassign_rule()
2764 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2787 _res = _PyPegen_augoperator ( p , LShift ); in augassign_rule()
2788 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2811 _res = _PyPegen_augoperator ( p , RShift ); in augassign_rule()
2812 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2835 _res = _PyPegen_augoperator ( p , Pow ); in augassign_rule()
2836 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2859 _res = _PyPegen_augoperator ( p , FloorDiv ); in augassign_rule()
2860 if (_res == NULL && PyErr_Occurred()) { in augassign_rule()
2871 _res = NULL; in augassign_rule()
2874 return _res; in augassign_rule()
2889 stmt_ty _res = NULL; in global_stmt_rule() local
2924_res = _PyAST_Global ( CHECK ( asdl_identifier_seq * , _PyPegen_map_names_to_ids ( p , a ) ) , EXT… in global_stmt_rule()
2925 if (_res == NULL && PyErr_Occurred()) { in global_stmt_rule()
2936 _res = NULL; in global_stmt_rule()
2939 return _res; in global_stmt_rule()
2954 stmt_ty _res = NULL; in nonlocal_stmt_rule() local
2989_res = _PyAST_Nonlocal ( CHECK ( asdl_identifier_seq * , _PyPegen_map_names_to_ids ( p , a ) ) , E… in nonlocal_stmt_rule()
2990 if (_res == NULL && PyErr_Occurred()) { in nonlocal_stmt_rule()
3001 _res = NULL; in nonlocal_stmt_rule()
3004 return _res; in nonlocal_stmt_rule()
3019 stmt_ty _res = NULL; in yield_stmt_rule() local
3051 _res = _PyAST_Expr ( y , EXTRA ); in yield_stmt_rule()
3052 if (_res == NULL && PyErr_Occurred()) { in yield_stmt_rule()
3063 _res = NULL; in yield_stmt_rule()
3066 return _res; in yield_stmt_rule()
3081 stmt_ty _res = NULL; in assert_stmt_rule() local
3119 _res = _PyAST_Assert ( a , b , EXTRA ); in assert_stmt_rule()
3120 if (_res == NULL && PyErr_Occurred()) { in assert_stmt_rule()
3131 _res = NULL; in assert_stmt_rule()
3134 return _res; in assert_stmt_rule()
3149 stmt_ty _res = NULL; in del_stmt_rule() local
3186 _res = _PyAST_Delete ( a , EXTRA ); in del_stmt_rule()
3187 if (_res == NULL && PyErr_Occurred()) { in del_stmt_rule()
3210 _res = invalid_del_stmt_var; in del_stmt_rule()
3217 _res = NULL; in del_stmt_rule()
3220 return _res; in del_stmt_rule()
3235 stmt_ty _res = NULL; in import_stmt_rule() local
3249 _res = import_name_var; in import_stmt_rule()
3268 _res = import_from_var; in import_stmt_rule()
3275 _res = NULL; in import_stmt_rule()
3278 return _res; in import_stmt_rule()
3293 stmt_ty _res = NULL; in import_name_rule() local
3328 _res = _PyAST_Import ( a , EXTRA ); in import_name_rule()
3329 if (_res == NULL && PyErr_Occurred()) { in import_name_rule()
3340 _res = NULL; in import_name_rule()
3343 return _res; in import_name_rule()
3360 stmt_ty _res = NULL; in import_from_rule() local
3404_res = _PyAST_ImportFrom ( b -> v . Name . id , c , _PyPegen_seq_count_dots ( a ) , EXTRA ); in import_from_rule()
3405 if (_res == NULL && PyErr_Occurred()) { in import_from_rule()
3446 _res = _PyAST_ImportFrom ( NULL , b , _PyPegen_seq_count_dots ( a ) , EXTRA ); in import_from_rule()
3447 if (_res == NULL && PyErr_Occurred()) { in import_from_rule()
3458 _res = NULL; in import_from_rule()
3461 return _res; in import_from_rule()
3480 asdl_alias_seq* _res = NULL; in import_from_targets_rule() local
3513 _res = a; in import_from_targets_rule()
3514 if (_res == NULL && PyErr_Occurred()) { in import_from_targets_rule()
3539 _res = import_from_as_names_var; in import_from_targets_rule()
3567_res = ( asdl_alias_seq * ) _PyPegen_singleton_seq ( p , CHECK ( alias_ty , _PyPegen_alias_for_sta… in import_from_targets_rule()
3568 if (_res == NULL && PyErr_Occurred()) { in import_from_targets_rule()
3591 _res = invalid_import_from_targets_var; in import_from_targets_rule()
3598 _res = NULL; in import_from_targets_rule()
3601 return _res; in import_from_targets_rule()
3616 asdl_alias_seq* _res = NULL; in import_from_as_names_rule() local
3630 _res = a; in import_from_as_names_rule()
3631 if (_res == NULL && PyErr_Occurred()) { in import_from_as_names_rule()
3642 _res = NULL; in import_from_as_names_rule()
3645 return _res; in import_from_as_names_rule()
3660 alias_ty _res = NULL; in import_from_as_name_rule() local
3695_res = _PyAST_alias ( a -> v . Name . id , ( b ) ? ( ( expr_ty ) b ) -> v . Name . id : NULL , EXT… in import_from_as_name_rule()
3696 if (_res == NULL && PyErr_Occurred()) { in import_from_as_name_rule()
3707 _res = NULL; in import_from_as_name_rule()
3710 return _res; in import_from_as_name_rule()
3725 asdl_alias_seq* _res = NULL; in dotted_as_names_rule() local
3739 _res = a; in dotted_as_names_rule()
3740 if (_res == NULL && PyErr_Occurred()) { in dotted_as_names_rule()
3751 _res = NULL; in dotted_as_names_rule()
3754 return _res; in dotted_as_names_rule()
3769 alias_ty _res = NULL; in dotted_as_name_rule() local
3804_res = _PyAST_alias ( a -> v . Name . id , ( b ) ? ( ( expr_ty ) b ) -> v . Name . id : NULL , EXT… in dotted_as_name_rule()
3805 if (_res == NULL && PyErr_Occurred()) { in dotted_as_name_rule()
3816 _res = NULL; in dotted_as_name_rule()
3819 return _res; in dotted_as_name_rule()
3832 expr_ty _res = NULL; in dotted_name_rule() local
3833 if (_PyPegen_is_memoized(p, dotted_name_type, &_res)) { in dotted_name_rule()
3835 return _res; in dotted_name_rule()
3840 int tmpvar_0 = _PyPegen_update_memo(p, _mark, dotted_name_type, _res); in dotted_name_rule()
3843 return _res; in dotted_name_rule()
3856 _res = _raw; in dotted_name_rule()
3860 return _res; in dotted_name_rule()
3873 expr_ty _res = NULL; in dotted_name_raw() local
3893 _res = _PyPegen_join_names_with_dot ( p , a , b ); in dotted_name_raw()
3894 if (_res == NULL && PyErr_Occurred()) { in dotted_name_raw()
3917 _res = name_var; in dotted_name_raw()
3924 _res = NULL; in dotted_name_raw()
3927 return _res; in dotted_name_raw()
3945 stmt_ty _res = NULL; in if_stmt_rule() local
3968 _res = invalid_if_stmt_var; in if_stmt_rule()
4008_res = _PyAST_If ( a , b , CHECK ( asdl_stmt_seq * , _PyPegen_singleton_seq ( p , c ) ) , EXTRA ); in if_stmt_rule()
4009 if (_res == NULL && PyErr_Occurred()) { in if_stmt_rule()
4053 _res = _PyAST_If ( a , b , c , EXTRA ); in if_stmt_rule()
4054 if (_res == NULL && PyErr_Occurred()) { in if_stmt_rule()
4065 _res = NULL; in if_stmt_rule()
4068 return _res; in if_stmt_rule()
4086 stmt_ty _res = NULL; in elif_stmt_rule() local
4109 _res = invalid_elif_stmt_var; in elif_stmt_rule()
4149_res = _PyAST_If ( a , b , CHECK ( asdl_stmt_seq * , _PyPegen_singleton_seq ( p , c ) ) , EXTRA ); in elif_stmt_rule()
4150 if (_res == NULL && PyErr_Occurred()) { in elif_stmt_rule()
4194 _res = _PyAST_If ( a , b , c , EXTRA ); in elif_stmt_rule()
4195 if (_res == NULL && PyErr_Occurred()) { in elif_stmt_rule()
4206 _res = NULL; in elif_stmt_rule()
4209 return _res; in elif_stmt_rule()
4224 asdl_stmt_seq* _res = NULL; in else_block_rule() local
4238 _res = invalid_else_stmt_var; in else_block_rule()
4263 _res = b; in else_block_rule()
4264 if (_res == NULL && PyErr_Occurred()) { in else_block_rule()
4275 _res = NULL; in else_block_rule()
4278 return _res; in else_block_rule()
4293 stmt_ty _res = NULL; in while_stmt_rule() local
4316 _res = invalid_while_stmt_var; in while_stmt_rule()
4356 _res = _PyAST_While ( a , b , c , EXTRA ); in while_stmt_rule()
4357 if (_res == NULL && PyErr_Occurred()) { in while_stmt_rule()
4368 _res = NULL; in while_stmt_rule()
4371 return _res; in while_stmt_rule()
4390 stmt_ty _res = NULL; in for_stmt_rule() local
4413 _res = invalid_for_stmt_var; in for_stmt_rule()
4465 _res = _PyAST_For ( t , ex , b , el , NEW_TYPE_COMMENT ( p , tc ) , EXTRA ); in for_stmt_rule()
4466 if (_res == NULL && PyErr_Occurred()) { in for_stmt_rule()
4529_res = CHECK_VERSION ( stmt_ty , 5 , "Async for loops are" , _PyAST_AsyncFor ( t , ex , b , el , N… in for_stmt_rule()
4530 if (_res == NULL && PyErr_Occurred()) { in for_stmt_rule()
4557 _res = invalid_for_target_var; in for_stmt_rule()
4564 _res = NULL; in for_stmt_rule()
4567 return _res; in for_stmt_rule()
4588 stmt_ty _res = NULL; in with_stmt_rule() local
4611 _res = invalid_with_stmt_indent_var; in with_stmt_rule()
4658 _res = _PyAST_With ( a , b , NULL , EXTRA ); in with_stmt_rule()
4659 if (_res == NULL && PyErr_Occurred()) { in with_stmt_rule()
4703 _res = _PyAST_With ( a , b , NEW_TYPE_COMMENT ( p , tc ) , EXTRA ); in with_stmt_rule()
4704 if (_res == NULL && PyErr_Occurred()) { in with_stmt_rule()
4758_res = CHECK_VERSION ( stmt_ty , 5 , "Async with statements are" , _PyAST_AsyncWith ( a , b , NULL… in with_stmt_rule()
4759 if (_res == NULL && PyErr_Occurred()) { in with_stmt_rule()
4806_res = CHECK_VERSION ( stmt_ty , 5 , "Async with statements are" , _PyAST_AsyncWith ( a , b , NEW_… in with_stmt_rule()
4807 if (_res == NULL && PyErr_Occurred()) { in with_stmt_rule()
4830 _res = invalid_with_stmt_var; in with_stmt_rule()
4837 _res = NULL; in with_stmt_rule()
4840 return _res; in with_stmt_rule()
4858 withitem_ty _res = NULL; in with_item_rule() local
4880 _res = _PyAST_withitem ( e , t , p -> arena ); in with_item_rule()
4881 if (_res == NULL && PyErr_Occurred()) { in with_item_rule()
4904 _res = invalid_with_item_var; in with_item_rule()
4923 _res = _PyAST_withitem ( e , NULL , p -> arena ); in with_item_rule()
4924 if (_res == NULL && PyErr_Occurred()) { in with_item_rule()
4935 _res = NULL; in with_item_rule()
4938 return _res; in with_item_rule()
4956 stmt_ty _res = NULL; in try_stmt_rule() local
4979 _res = invalid_try_stmt_var; in try_stmt_rule()
5016 _res = _PyAST_Try ( b , NULL , NULL , f , EXTRA ); in try_stmt_rule()
5017 if (_res == NULL && PyErr_Occurred()) { in try_stmt_rule()
5064 _res = _PyAST_Try ( b , ex , el , f , EXTRA ); in try_stmt_rule()
5065 if (_res == NULL && PyErr_Occurred()) { in try_stmt_rule()
5076 _res = NULL; in try_stmt_rule()
5079 return _res; in try_stmt_rule()
5098 excepthandler_ty _res = NULL; in except_block_rule() local
5121 _res = invalid_except_stmt_indent_var; in except_block_rule()
5161_res = _PyAST_ExceptHandler ( e , ( t ) ? ( ( expr_ty ) t ) -> v . Name . id : NULL , b , EXTRA ); in except_block_rule()
5162 if (_res == NULL && PyErr_Occurred()) { in except_block_rule()
5200 _res = _PyAST_ExceptHandler ( NULL , NULL , b , EXTRA ); in except_block_rule()
5201 if (_res == NULL && PyErr_Occurred()) { in except_block_rule()
5224 _res = invalid_except_stmt_var; in except_block_rule()
5231 _res = NULL; in except_block_rule()
5234 return _res; in except_block_rule()
5249 asdl_stmt_seq* _res = NULL; in finally_block_rule() local
5263 _res = invalid_finally_stmt_var; in finally_block_rule()
5288 _res = a; in finally_block_rule()
5289 if (_res == NULL && PyErr_Occurred()) { in finally_block_rule()
5300 _res = NULL; in finally_block_rule()
5303 return _res; in finally_block_rule()
5320 stmt_ty _res = NULL; in match_stmt_rule() local
5370_res = CHECK_VERSION ( stmt_ty , 10 , "Pattern matching is" , _PyAST_Match ( subject , cases , EXT… in match_stmt_rule()
5371 if (_res == NULL && PyErr_Occurred()) { in match_stmt_rule()
5394 _res = invalid_match_stmt_var; in match_stmt_rule()
5401 _res = NULL; in match_stmt_rule()
5404 return _res; in match_stmt_rule()
5419 expr_ty _res = NULL; in subject_expr_rule() local
5457_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , value , values … in subject_expr_rule()
5458 if (_res == NULL && PyErr_Occurred()) { in subject_expr_rule()
5481 _res = named_expression_var; in subject_expr_rule()
5488 _res = NULL; in subject_expr_rule()
5491 return _res; in subject_expr_rule()
5506 match_case_ty _res = NULL; in case_block_rule() local
5520 _res = invalid_case_block_var; in case_block_rule()
5551 _res = _PyAST_match_case ( pattern , guard , body , p -> arena ); in case_block_rule()
5552 if (_res == NULL && PyErr_Occurred()) { in case_block_rule()
5563 _res = NULL; in case_block_rule()
5566 return _res; in case_block_rule()
5581 expr_ty _res = NULL; in guard_rule() local
5598 _res = guard; in guard_rule()
5599 if (_res == NULL && PyErr_Occurred()) { in guard_rule()
5610 _res = NULL; in guard_rule()
5613 return _res; in guard_rule()
5628 pattern_ty _res = NULL; in patterns_rule() local
5660 _res = _PyAST_MatchSequence ( patterns , EXTRA ); in patterns_rule()
5661 if (_res == NULL && PyErr_Occurred()) { in patterns_rule()
5684 _res = pattern_var; in patterns_rule()
5691 _res = NULL; in patterns_rule()
5694 return _res; in patterns_rule()
5709 pattern_ty _res = NULL; in pattern_rule() local
5723 _res = as_pattern_var; in pattern_rule()
5742 _res = or_pattern_var; in pattern_rule()
5749 _res = NULL; in pattern_rule()
5752 return _res; in pattern_rule()
5767 pattern_ty _res = NULL; in as_pattern_rule() local
5805 _res = _PyAST_MatchAs ( pattern , target -> v . Name . id , EXTRA ); in as_pattern_rule()
5806 if (_res == NULL && PyErr_Occurred()) { in as_pattern_rule()
5829 _res = invalid_as_pattern_var; in as_pattern_rule()
5836 _res = NULL; in as_pattern_rule()
5839 return _res; in as_pattern_rule()
5854 pattern_ty _res = NULL; in or_pattern_rule() local
5886_res = asdl_seq_LEN ( patterns ) == 1 ? asdl_seq_GET ( patterns , 0 ) : _PyAST_MatchOr ( patterns … in or_pattern_rule()
5887 if (_res == NULL && PyErr_Occurred()) { in or_pattern_rule()
5898 _res = NULL; in or_pattern_rule()
5901 return _res; in or_pattern_rule()
5924 pattern_ty _res = NULL; in closed_pattern_rule() local
5938 _res = literal_pattern_var; in closed_pattern_rule()
5957 _res = capture_pattern_var; in closed_pattern_rule()
5976 _res = wildcard_pattern_var; in closed_pattern_rule()
5995 _res = value_pattern_var; in closed_pattern_rule()
6014 _res = group_pattern_var; in closed_pattern_rule()
6033 _res = sequence_pattern_var; in closed_pattern_rule()
6052 _res = mapping_pattern_var; in closed_pattern_rule()
6071 _res = class_pattern_var; in closed_pattern_rule()
6078 _res = NULL; in closed_pattern_rule()
6081 return _res; in closed_pattern_rule()
6102 pattern_ty _res = NULL; in literal_pattern_rule() local
6136 _res = _PyAST_MatchValue ( value , EXTRA ); in literal_pattern_rule()
6137 if (_res == NULL && PyErr_Occurred()) { in literal_pattern_rule()
6169 _res = _PyAST_MatchValue ( value , EXTRA ); in literal_pattern_rule()
6170 if (_res == NULL && PyErr_Occurred()) { in literal_pattern_rule()
6202 _res = _PyAST_MatchValue ( value , EXTRA ); in literal_pattern_rule()
6203 if (_res == NULL && PyErr_Occurred()) { in literal_pattern_rule()
6235 _res = _PyAST_MatchSingleton ( Py_None , EXTRA ); in literal_pattern_rule()
6236 if (_res == NULL && PyErr_Occurred()) { in literal_pattern_rule()
6268 _res = _PyAST_MatchSingleton ( Py_True , EXTRA ); in literal_pattern_rule()
6269 if (_res == NULL && PyErr_Occurred()) { in literal_pattern_rule()
6301 _res = _PyAST_MatchSingleton ( Py_False , EXTRA ); in literal_pattern_rule()
6302 if (_res == NULL && PyErr_Occurred()) { in literal_pattern_rule()
6313 _res = NULL; in literal_pattern_rule()
6316 return _res; in literal_pattern_rule()
6337 expr_ty _res = NULL; in literal_expr_rule() local
6362 _res = signed_number_var; in literal_expr_rule()
6381 _res = complex_number_var; in literal_expr_rule()
6400 _res = strings_var; in literal_expr_rule()
6428 _res = _PyAST_Constant ( Py_None , NULL , EXTRA ); in literal_expr_rule()
6429 if (_res == NULL && PyErr_Occurred()) { in literal_expr_rule()
6461 _res = _PyAST_Constant ( Py_True , NULL , EXTRA ); in literal_expr_rule()
6462 if (_res == NULL && PyErr_Occurred()) { in literal_expr_rule()
6494 _res = _PyAST_Constant ( Py_False , NULL , EXTRA ); in literal_expr_rule()
6495 if (_res == NULL && PyErr_Occurred()) { in literal_expr_rule()
6506 _res = NULL; in literal_expr_rule()
6509 return _res; in literal_expr_rule()
6526 expr_ty _res = NULL; in complex_number_rule() local
6564 _res = _PyAST_BinOp ( real , Add , imag , EXTRA ); in complex_number_rule()
6565 if (_res == NULL && PyErr_Occurred()) { in complex_number_rule()
6603 _res = _PyAST_BinOp ( real , Sub , imag , EXTRA ); in complex_number_rule()
6604 if (_res == NULL && PyErr_Occurred()) { in complex_number_rule()
6615 _res = NULL; in complex_number_rule()
6618 return _res; in complex_number_rule()
6633 expr_ty _res = NULL; in signed_number_rule() local
6656 _res = number_var; in signed_number_rule()
6687 _res = _PyAST_UnaryOp ( USub , number , EXTRA ); in signed_number_rule()
6688 if (_res == NULL && PyErr_Occurred()) { in signed_number_rule()
6699 _res = NULL; in signed_number_rule()
6702 return _res; in signed_number_rule()
6717 expr_ty _res = NULL; in signed_real_number_rule() local
6740 _res = real_number_var; in signed_real_number_rule()
6771 _res = _PyAST_UnaryOp ( USub , real , EXTRA ); in signed_real_number_rule()
6772 if (_res == NULL && PyErr_Occurred()) { in signed_real_number_rule()
6783 _res = NULL; in signed_real_number_rule()
6786 return _res; in signed_real_number_rule()
6801 expr_ty _res = NULL; in real_number_rule() local
6815 _res = _PyPegen_ensure_real ( p , real ); in real_number_rule()
6816 if (_res == NULL && PyErr_Occurred()) { in real_number_rule()
6827 _res = NULL; in real_number_rule()
6830 return _res; in real_number_rule()
6845 expr_ty _res = NULL; in imaginary_number_rule() local
6859 _res = _PyPegen_ensure_imaginary ( p , imag ); in imaginary_number_rule()
6860 if (_res == NULL && PyErr_Occurred()) { in imaginary_number_rule()
6871 _res = NULL; in imaginary_number_rule()
6874 return _res; in imaginary_number_rule()
6889 pattern_ty _res = NULL; in capture_pattern_rule() local
6921 _res = _PyAST_MatchAs ( NULL , target -> v . Name . id , EXTRA ); in capture_pattern_rule()
6922 if (_res == NULL && PyErr_Occurred()) { in capture_pattern_rule()
6933 _res = NULL; in capture_pattern_rule()
6936 return _res; in capture_pattern_rule()
6951 expr_ty _res = NULL; in pattern_capture_target_rule() local
6969 _res = _PyPegen_set_expr_context ( p , name , Store ); in pattern_capture_target_rule()
6970 if (_res == NULL && PyErr_Occurred()) { in pattern_capture_target_rule()
6981 _res = NULL; in pattern_capture_target_rule()
6984 return _res; in pattern_capture_target_rule()
6999 pattern_ty _res = NULL; in wildcard_pattern_rule() local
7031 _res = _PyAST_MatchAs ( NULL , NULL , EXTRA ); in wildcard_pattern_rule()
7032 if (_res == NULL && PyErr_Occurred()) { in wildcard_pattern_rule()
7043 _res = NULL; in wildcard_pattern_rule()
7046 return _res; in wildcard_pattern_rule()
7061 pattern_ty _res = NULL; in value_pattern_rule() local
7095 _res = _PyAST_MatchValue ( attr , EXTRA ); in value_pattern_rule()
7096 if (_res == NULL && PyErr_Occurred()) { in value_pattern_rule()
7107 _res = NULL; in value_pattern_rule()
7110 return _res; in value_pattern_rule()
7123 expr_ty _res = NULL; in attr_rule() local
7124 if (_PyPegen_is_memoized(p, attr_type, &_res)) { in attr_rule()
7126 return _res; in attr_rule()
7131 int tmpvar_1 = _PyPegen_update_memo(p, _mark, attr_type, _res); in attr_rule()
7134 return _res; in attr_rule()
7147 _res = _raw; in attr_rule()
7151 return _res; in attr_rule()
7164 expr_ty _res = NULL; in attr_raw() local
7202 _res = _PyAST_Attribute ( value , attr -> v . Name . id , Load , EXTRA ); in attr_raw()
7203 if (_res == NULL && PyErr_Occurred()) { in attr_raw()
7214 _res = NULL; in attr_raw()
7217 return _res; in attr_raw()
7233 expr_ty _res = NULL; in name_or_attr_rule() local
7247 _res = attr_var; in name_or_attr_rule()
7266 _res = name_var; in name_or_attr_rule()
7273 _res = NULL; in name_or_attr_rule()
7276 return _res; in name_or_attr_rule()
7291 pattern_ty _res = NULL; in group_pattern_rule() local
7311 _res = pattern; in group_pattern_rule()
7312 if (_res == NULL && PyErr_Occurred()) { in group_pattern_rule()
7323 _res = NULL; in group_pattern_rule()
7326 return _res; in group_pattern_rule()
7341 pattern_ty _res = NULL; in sequence_pattern_rule() local
7379 _res = _PyAST_MatchSequence ( patterns , EXTRA ); in sequence_pattern_rule()
7380 if (_res == NULL && PyErr_Occurred()) { in sequence_pattern_rule()
7418 _res = _PyAST_MatchSequence ( patterns , EXTRA ); in sequence_pattern_rule()
7419 if (_res == NULL && PyErr_Occurred()) { in sequence_pattern_rule()
7430 _res = NULL; in sequence_pattern_rule()
7433 return _res; in sequence_pattern_rule()
7448 asdl_seq* _res = NULL; in open_sequence_pattern_rule() local
7468 _res = _PyPegen_seq_insert_in_front ( p , pattern , patterns ); in open_sequence_pattern_rule()
7469 if (_res == NULL && PyErr_Occurred()) { in open_sequence_pattern_rule()
7480 _res = NULL; in open_sequence_pattern_rule()
7483 return _res; in open_sequence_pattern_rule()
7498 asdl_seq* _res = NULL; in maybe_sequence_pattern_rule() local
7516 _res = patterns; in maybe_sequence_pattern_rule()
7517 if (_res == NULL && PyErr_Occurred()) { in maybe_sequence_pattern_rule()
7528 _res = NULL; in maybe_sequence_pattern_rule()
7531 return _res; in maybe_sequence_pattern_rule()
7546 pattern_ty _res = NULL; in maybe_star_pattern_rule() local
7560 _res = star_pattern_var; in maybe_star_pattern_rule()
7579 _res = pattern_var; in maybe_star_pattern_rule()
7586 _res = NULL; in maybe_star_pattern_rule()
7589 return _res; in maybe_star_pattern_rule()
7604 pattern_ty _res = NULL; in star_pattern_rule() local
7639 _res = _PyAST_MatchStar ( target -> v . Name . id , EXTRA ); in star_pattern_rule()
7640 if (_res == NULL && PyErr_Occurred()) { in star_pattern_rule()
7675 _res = _PyAST_MatchStar ( NULL , EXTRA ); in star_pattern_rule()
7676 if (_res == NULL && PyErr_Occurred()) { in star_pattern_rule()
7687 _res = NULL; in star_pattern_rule()
7690 return _res; in star_pattern_rule()
7709 pattern_ty _res = NULL; in mapping_pattern_rule() local
7744 _res = _PyAST_MatchMapping ( NULL , NULL , NULL , EXTRA ); in mapping_pattern_rule()
7745 if (_res == NULL && PyErr_Occurred()) { in mapping_pattern_rule()
7787 _res = _PyAST_MatchMapping ( NULL , NULL , rest -> v . Name . id , EXTRA ); in mapping_pattern_rule()
7788 if (_res == NULL && PyErr_Occurred()) { in mapping_pattern_rule()
7836_res = _PyAST_MatchMapping ( CHECK ( asdl_expr_seq * , _PyPegen_get_pattern_keys ( p , items ) ) ,… in mapping_pattern_rule()
7837 if (_res == NULL && PyErr_Occurred()) { in mapping_pattern_rule()
7879_res = _PyAST_MatchMapping ( CHECK ( asdl_expr_seq * , _PyPegen_get_pattern_keys ( p , items ) ) ,… in mapping_pattern_rule()
7880 if (_res == NULL && PyErr_Occurred()) { in mapping_pattern_rule()
7891 _res = NULL; in mapping_pattern_rule()
7894 return _res; in mapping_pattern_rule()
7909 asdl_seq* _res = NULL; in items_pattern_rule() local
7923 _res = _gather_59_var; in items_pattern_rule()
7930 _res = NULL; in items_pattern_rule()
7933 return _res; in items_pattern_rule()
7948 KeyPatternPair* _res = NULL; in key_value_pattern_rule() local
7968 _res = _PyPegen_key_pattern_pair ( p , key , pattern ); in key_value_pattern_rule()
7969 if (_res == NULL && PyErr_Occurred()) { in key_value_pattern_rule()
7980 _res = NULL; in key_value_pattern_rule()
7983 return _res; in key_value_pattern_rule()
7998 expr_ty _res = NULL; in double_star_pattern_rule() local
8015 _res = target; in double_star_pattern_rule()
8016 if (_res == NULL && PyErr_Occurred()) { in double_star_pattern_rule()
8027 _res = NULL; in double_star_pattern_rule()
8030 return _res; in double_star_pattern_rule()
8050 pattern_ty _res = NULL; in class_pattern_rule() local
8088 _res = _PyAST_MatchClass ( cls , NULL , NULL , NULL , EXTRA ); in class_pattern_rule()
8089 if (_res == NULL && PyErr_Occurred()) { in class_pattern_rule()
8134 _res = _PyAST_MatchClass ( cls , patterns , NULL , NULL , EXTRA ); in class_pattern_rule()
8135 if (_res == NULL && PyErr_Occurred()) { in class_pattern_rule()
8180_res = _PyAST_MatchClass ( cls , NULL , CHECK ( asdl_identifier_seq * , _PyPegen_map_names_to_ids … in class_pattern_rule()
8181 if (_res == NULL && PyErr_Occurred()) { in class_pattern_rule()
8232_res = _PyAST_MatchClass ( cls , patterns , CHECK ( asdl_identifier_seq * , _PyPegen_map_names_to_… in class_pattern_rule()
8233 if (_res == NULL && PyErr_Occurred()) { in class_pattern_rule()
8256 _res = invalid_class_pattern_var; in class_pattern_rule()
8263 _res = NULL; in class_pattern_rule()
8266 return _res; in class_pattern_rule()
8281 asdl_pattern_seq* _res = NULL; in positional_patterns_rule() local
8295 _res = args; in positional_patterns_rule()
8296 if (_res == NULL && PyErr_Occurred()) { in positional_patterns_rule()
8307 _res = NULL; in positional_patterns_rule()
8310 return _res; in positional_patterns_rule()
8325 asdl_seq* _res = NULL; in keyword_patterns_rule() local
8339 _res = _gather_64_var; in keyword_patterns_rule()
8346 _res = NULL; in keyword_patterns_rule()
8349 return _res; in keyword_patterns_rule()
8364 KeyPatternPair* _res = NULL; in keyword_pattern_rule() local
8384 _res = _PyPegen_key_pattern_pair ( p , arg , value ); in keyword_pattern_rule()
8385 if (_res == NULL && PyErr_Occurred()) { in keyword_pattern_rule()
8396 _res = NULL; in keyword_pattern_rule()
8399 return _res; in keyword_pattern_rule()
8414 stmt_ty _res = NULL; in return_stmt_rule() local
8449 _res = _PyAST_Return ( a , EXTRA ); in return_stmt_rule()
8450 if (_res == NULL && PyErr_Occurred()) { in return_stmt_rule()
8461 _res = NULL; in return_stmt_rule()
8464 return _res; in return_stmt_rule()
8479 stmt_ty _res = NULL; in raise_stmt_rule() local
8517 _res = _PyAST_Raise ( a , b , EXTRA ); in raise_stmt_rule()
8518 if (_res == NULL && PyErr_Occurred()) { in raise_stmt_rule()
8550 _res = _PyAST_Raise ( NULL , NULL , EXTRA ); in raise_stmt_rule()
8551 if (_res == NULL && PyErr_Occurred()) { in raise_stmt_rule()
8562 _res = NULL; in raise_stmt_rule()
8565 return _res; in raise_stmt_rule()
8580 stmt_ty _res = NULL; in function_def_rule() local
8597 _res = _PyPegen_function_def_decorators ( p , d , f ); in function_def_rule()
8598 if (_res == NULL && PyErr_Occurred()) { in function_def_rule()
8621 _res = function_def_raw_var; in function_def_rule()
8628 _res = NULL; in function_def_rule()
8631 return _res; in function_def_rule()
8649 stmt_ty _res = NULL; in function_def_raw_rule() local
8672 _res = invalid_def_raw_var; in function_def_raw_rule()
8724_res = _PyAST_FunctionDef ( n -> v . Name . id , ( params ) ? params : CHECK ( arguments_ty , _PyP… in function_def_raw_rule()
8725 if (_res == NULL && PyErr_Occurred()) { in function_def_raw_rule()
8784_res = CHECK_VERSION ( stmt_ty , 5 , "Async functions are" , _PyAST_AsyncFunctionDef ( n -> v . Na… in function_def_raw_rule()
8785 if (_res == NULL && PyErr_Occurred()) { in function_def_raw_rule()
8796 _res = NULL; in function_def_raw_rule()
8799 return _res; in function_def_raw_rule()
8817 Token* _res = NULL; in func_type_comment_rule() local
8836 _res = t; in func_type_comment_rule()
8837 if (_res == NULL && PyErr_Occurred()) { in func_type_comment_rule()
8860 _res = invalid_double_type_comments_var; in func_type_comment_rule()
8879 _res = type_comment_var; in func_type_comment_rule()
8886 _res = NULL; in func_type_comment_rule()
8889 return _res; in func_type_comment_rule()
8904 arguments_ty _res = NULL; in params_rule() local
8918 _res = invalid_parameters_var; in params_rule()
8937 _res = parameters_var; in params_rule()
8944 _res = NULL; in params_rule()
8947 return _res; in params_rule()
8967 arguments_ty _res = NULL; in parameters_rule() local
8990 _res = _PyPegen_make_arguments ( p , a , NULL , b , c , d ); in parameters_rule()
8991 if (_res == NULL && PyErr_Occurred()) { in parameters_rule()
9020 _res = _PyPegen_make_arguments ( p , NULL , a , NULL , b , c ); in parameters_rule()
9021 if (_res == NULL && PyErr_Occurred()) { in parameters_rule()
9050 _res = _PyPegen_make_arguments ( p , NULL , NULL , a , b , c ); in parameters_rule()
9051 if (_res == NULL && PyErr_Occurred()) { in parameters_rule()
9077 _res = _PyPegen_make_arguments ( p , NULL , NULL , NULL , a , b ); in parameters_rule()
9078 if (_res == NULL && PyErr_Occurred()) { in parameters_rule()
9101 _res = _PyPegen_make_arguments ( p , NULL , NULL , NULL , NULL , a ); in parameters_rule()
9102 if (_res == NULL && PyErr_Occurred()) { in parameters_rule()
9113 _res = NULL; in parameters_rule()
9116 return _res; in parameters_rule()
9131 asdl_arg_seq* _res = NULL; in slash_no_default_rule() local
9151 _res = a; in slash_no_default_rule()
9152 if (_res == NULL && PyErr_Occurred()) { in slash_no_default_rule()
9180 _res = a; in slash_no_default_rule()
9181 if (_res == NULL && PyErr_Occurred()) { in slash_no_default_rule()
9192 _res = NULL; in slash_no_default_rule()
9195 return _res; in slash_no_default_rule()
9212 SlashWithDefault* _res = NULL; in slash_with_default_rule() local
9235 _res = _PyPegen_slash_with_default ( p , ( asdl_arg_seq * ) a , b ); in slash_with_default_rule()
9236 if (_res == NULL && PyErr_Occurred()) { in slash_with_default_rule()
9267 _res = _PyPegen_slash_with_default ( p , ( asdl_arg_seq * ) a , b ); in slash_with_default_rule()
9268 if (_res == NULL && PyErr_Occurred()) { in slash_with_default_rule()
9279 _res = NULL; in slash_with_default_rule()
9282 return _res; in slash_with_default_rule()
9301 StarEtc* _res = NULL; in star_etc_rule() local
9324 _res = _PyPegen_star_etc ( p , a , b , c ); in star_etc_rule()
9325 if (_res == NULL && PyErr_Occurred()) { in star_etc_rule()
9357 _res = _PyPegen_star_etc ( p , NULL , b , c ); in star_etc_rule()
9358 if (_res == NULL && PyErr_Occurred()) { in star_etc_rule()
9381 _res = _PyPegen_star_etc ( p , NULL , NULL , a ); in star_etc_rule()
9382 if (_res == NULL && PyErr_Occurred()) { in star_etc_rule()
9405 _res = invalid_star_etc_var; in star_etc_rule()
9412 _res = NULL; in star_etc_rule()
9415 return _res; in star_etc_rule()
9430 arg_ty _res = NULL; in kwds_rule() local
9447 _res = a; in kwds_rule()
9448 if (_res == NULL && PyErr_Occurred()) { in kwds_rule()
9459 _res = NULL; in kwds_rule()
9462 return _res; in kwds_rule()
9477 arg_ty _res = NULL; in param_no_default_rule() local
9497 _res = _PyPegen_add_type_comment_to_arg ( p , a , tc ); in param_no_default_rule()
9498 if (_res == NULL && PyErr_Occurred()) { in param_no_default_rule()
9526 _res = _PyPegen_add_type_comment_to_arg ( p , a , tc ); in param_no_default_rule()
9527 if (_res == NULL && PyErr_Occurred()) { in param_no_default_rule()
9538 _res = NULL; in param_no_default_rule()
9541 return _res; in param_no_default_rule()
9556 NameDefaultPair* _res = NULL; in param_with_default_rule() local
9579 _res = _PyPegen_name_default_pair ( p , a , c , tc ); in param_with_default_rule()
9580 if (_res == NULL && PyErr_Occurred()) { in param_with_default_rule()
9611 _res = _PyPegen_name_default_pair ( p , a , c , tc ); in param_with_default_rule()
9612 if (_res == NULL && PyErr_Occurred()) { in param_with_default_rule()
9623 _res = NULL; in param_with_default_rule()
9626 return _res; in param_with_default_rule()
9643 NameDefaultPair* _res = NULL; in param_maybe_default_rule() local
9666 _res = _PyPegen_name_default_pair ( p , a , c , tc ); in param_maybe_default_rule()
9667 if (_res == NULL && PyErr_Occurred()) { in param_maybe_default_rule()
9698 _res = _PyPegen_name_default_pair ( p , a , c , tc ); in param_maybe_default_rule()
9699 if (_res == NULL && PyErr_Occurred()) { in param_maybe_default_rule()
9710 _res = NULL; in param_maybe_default_rule()
9713 return _res; in param_maybe_default_rule()
9728 arg_ty _res = NULL; in param_rule() local
9763 _res = _PyAST_arg ( a -> v . Name . id , b , NULL , EXTRA ); in param_rule()
9764 if (_res == NULL && PyErr_Occurred()) { in param_rule()
9775 _res = NULL; in param_rule()
9778 return _res; in param_rule()
9793 expr_ty _res = NULL; in annotation_rule() local
9810 _res = a; in annotation_rule()
9811 if (_res == NULL && PyErr_Occurred()) { in annotation_rule()
9822 _res = NULL; in annotation_rule()
9825 return _res; in annotation_rule()
9840 expr_ty _res = NULL; in default_rule() local
9857 _res = a; in default_rule()
9858 if (_res == NULL && PyErr_Occurred()) { in default_rule()
9869 _res = NULL; in default_rule()
9872 return _res; in default_rule()
9887 asdl_expr_seq* _res = NULL; in decorators_rule() local
9901 _res = a; in decorators_rule()
9902 if (_res == NULL && PyErr_Occurred()) { in decorators_rule()
9913 _res = NULL; in decorators_rule()
9916 return _res; in decorators_rule()
9931 stmt_ty _res = NULL; in class_def_rule() local
9948 _res = _PyPegen_class_def_decorators ( p , a , b ); in class_def_rule()
9949 if (_res == NULL && PyErr_Occurred()) { in class_def_rule()
9972 _res = class_def_raw_var; in class_def_rule()
9979 _res = NULL; in class_def_rule()
9982 return _res; in class_def_rule()
9997 stmt_ty _res = NULL; in class_def_raw_rule() local
10020 _res = invalid_class_def_raw_var; in class_def_raw_rule()
10060_res = _PyAST_ClassDef ( a -> v . Name . id , ( b ) ? ( ( expr_ty ) b ) -> v . Call . args : NULL … in class_def_raw_rule()
10061 if (_res == NULL && PyErr_Occurred()) { in class_def_raw_rule()
10072 _res = NULL; in class_def_raw_rule()
10075 return _res; in class_def_raw_rule()
10090 asdl_stmt_seq* _res = NULL; in block_rule() local
10091 if (_PyPegen_is_memoized(p, block_type, &_res)) { in block_rule()
10093 return _res; in block_rule()
10117 _res = a; in block_rule()
10118 if (_res == NULL && PyErr_Occurred()) { in block_rule()
10141 _res = simple_stmts_var; in block_rule()
10160 _res = invalid_block_var; in block_rule()
10167 _res = NULL; in block_rule()
10169 _PyPegen_insert_memo(p, _mark, block_type, _res); in block_rule()
10171 return _res; in block_rule()
10189 expr_ty _res = NULL; in star_expressions_rule() local
10228_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Loa… in star_expressions_rule()
10229 if (_res == NULL && PyErr_Occurred()) { in star_expressions_rule()
10264_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_singleton_seq ( p , a ) ) , Load , EXTRA … in star_expressions_rule()
10265 if (_res == NULL && PyErr_Occurred()) { in star_expressions_rule()
10288 _res = star_expression_var; in star_expressions_rule()
10295 _res = NULL; in star_expressions_rule()
10298 return _res; in star_expressions_rule()
10313 expr_ty _res = NULL; in star_expression_rule() local
10314 if (_PyPegen_is_memoized(p, star_expression_type, &_res)) { in star_expression_rule()
10316 return _res; in star_expression_rule()
10352 _res = _PyAST_Starred ( a , Load , EXTRA ); in star_expression_rule()
10353 if (_res == NULL && PyErr_Occurred()) { in star_expression_rule()
10376 _res = expression_var; in star_expression_rule()
10383 _res = NULL; in star_expression_rule()
10385 _PyPegen_insert_memo(p, _mark, star_expression_type, _res); in star_expression_rule()
10387 return _res; in star_expression_rule()
10402 asdl_expr_seq* _res = NULL; in star_named_expressions_rule() local
10420 _res = a; in star_named_expressions_rule()
10421 if (_res == NULL && PyErr_Occurred()) { in star_named_expressions_rule()
10432 _res = NULL; in star_named_expressions_rule()
10435 return _res; in star_named_expressions_rule()
10450 expr_ty _res = NULL; in star_named_expression_rule() local
10485 _res = _PyAST_Starred ( a , Load , EXTRA ); in star_named_expression_rule()
10486 if (_res == NULL && PyErr_Occurred()) { in star_named_expression_rule()
10509 _res = named_expression_var; in star_named_expression_rule()
10516 _res = NULL; in star_named_expression_rule()
10519 return _res; in star_named_expression_rule()
10534 expr_ty _res = NULL; in assignment_expression_rule() local
10575_res = _PyAST_NamedExpr ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a , Store ) ) , b , EX… in assignment_expression_rule()
10576 if (_res == NULL && PyErr_Occurred()) { in assignment_expression_rule()
10591 _res = NULL; in assignment_expression_rule()
10594 return _res; in assignment_expression_rule()
10609 expr_ty _res = NULL; in named_expression_rule() local
10623 _res = assignment_expression_var; in named_expression_rule()
10642 _res = invalid_named_expression_var; in named_expression_rule()
10663 _res = expression_var; in named_expression_rule()
10670 _res = NULL; in named_expression_rule()
10673 return _res; in named_expression_rule()
10688 expr_ty _res = NULL; in annotated_rhs_rule() local
10702 _res = yield_expr_var; in annotated_rhs_rule()
10721 _res = star_expressions_var; in annotated_rhs_rule()
10728 _res = NULL; in annotated_rhs_rule()
10731 return _res; in annotated_rhs_rule()
10746 expr_ty _res = NULL; in expressions_rule() local
10785_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Loa… in expressions_rule()
10786 if (_res == NULL && PyErr_Occurred()) { in expressions_rule()
10821_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_singleton_seq ( p , a ) ) , Load , EXTRA … in expressions_rule()
10822 if (_res == NULL && PyErr_Occurred()) { in expressions_rule()
10845 _res = expression_var; in expressions_rule()
10852 _res = NULL; in expressions_rule()
10855 return _res; in expressions_rule()
10875 expr_ty _res = NULL; in expression_rule() local
10876 if (_PyPegen_is_memoized(p, expression_type, &_res)) { in expression_rule()
10878 return _res; in expression_rule()
10902 _res = invalid_expression_var; in expression_rule()
10921 _res = invalid_legacy_expression_var; in expression_rule()
10961 _res = _PyAST_IfExp ( b , a , c , EXTRA ); in expression_rule()
10962 if (_res == NULL && PyErr_Occurred()) { in expression_rule()
10985 _res = disjunction_var; in expression_rule()
11004 _res = lambdef_var; in expression_rule()
11011 _res = NULL; in expression_rule()
11013 _PyPegen_insert_memo(p, _mark, expression_type, _res); in expression_rule()
11015 return _res; in expression_rule()
11030 expr_ty _res = NULL; in lambdef_rule() local
11071_res = _PyAST_Lambda ( ( a ) ? a : CHECK ( arguments_ty , _PyPegen_empty_arguments ( p ) ) , b , E… in lambdef_rule()
11072 if (_res == NULL && PyErr_Occurred()) { in lambdef_rule()
11083 _res = NULL; in lambdef_rule()
11086 return _res; in lambdef_rule()
11101 arguments_ty _res = NULL; in lambda_params_rule() local
11115 _res = invalid_lambda_parameters_var; in lambda_params_rule()
11134 _res = lambda_parameters_var; in lambda_params_rule()
11141 _res = NULL; in lambda_params_rule()
11144 return _res; in lambda_params_rule()
11164 arguments_ty _res = NULL; in lambda_parameters_rule() local
11187 _res = _PyPegen_make_arguments ( p , a , NULL , b , c , d ); in lambda_parameters_rule()
11188 if (_res == NULL && PyErr_Occurred()) { in lambda_parameters_rule()
11217 _res = _PyPegen_make_arguments ( p , NULL , a , NULL , b , c ); in lambda_parameters_rule()
11218 if (_res == NULL && PyErr_Occurred()) { in lambda_parameters_rule()
11247 _res = _PyPegen_make_arguments ( p , NULL , NULL , a , b , c ); in lambda_parameters_rule()
11248 if (_res == NULL && PyErr_Occurred()) { in lambda_parameters_rule()
11274 _res = _PyPegen_make_arguments ( p , NULL , NULL , NULL , a , b ); in lambda_parameters_rule()
11275 if (_res == NULL && PyErr_Occurred()) { in lambda_parameters_rule()
11298 _res = _PyPegen_make_arguments ( p , NULL , NULL , NULL , NULL , a ); in lambda_parameters_rule()
11299 if (_res == NULL && PyErr_Occurred()) { in lambda_parameters_rule()
11310 _res = NULL; in lambda_parameters_rule()
11313 return _res; in lambda_parameters_rule()
11330 asdl_arg_seq* _res = NULL; in lambda_slash_no_default_rule() local
11350 _res = a; in lambda_slash_no_default_rule()
11351 if (_res == NULL && PyErr_Occurred()) { in lambda_slash_no_default_rule()
11379 _res = a; in lambda_slash_no_default_rule()
11380 if (_res == NULL && PyErr_Occurred()) { in lambda_slash_no_default_rule()
11391 _res = NULL; in lambda_slash_no_default_rule()
11394 return _res; in lambda_slash_no_default_rule()
11411 SlashWithDefault* _res = NULL; in lambda_slash_with_default_rule() local
11434 _res = _PyPegen_slash_with_default ( p , ( asdl_arg_seq * ) a , b ); in lambda_slash_with_default_rule()
11435 if (_res == NULL && PyErr_Occurred()) { in lambda_slash_with_default_rule()
11466 _res = _PyPegen_slash_with_default ( p , ( asdl_arg_seq * ) a , b ); in lambda_slash_with_default_rule()
11467 if (_res == NULL && PyErr_Occurred()) { in lambda_slash_with_default_rule()
11478 _res = NULL; in lambda_slash_with_default_rule()
11481 return _res; in lambda_slash_with_default_rule()
11500 StarEtc* _res = NULL; in lambda_star_etc_rule() local
11523 _res = _PyPegen_star_etc ( p , a , b , c ); in lambda_star_etc_rule()
11524 if (_res == NULL && PyErr_Occurred()) { in lambda_star_etc_rule()
11556 _res = _PyPegen_star_etc ( p , NULL , b , c ); in lambda_star_etc_rule()
11557 if (_res == NULL && PyErr_Occurred()) { in lambda_star_etc_rule()
11580 _res = _PyPegen_star_etc ( p , NULL , NULL , a ); in lambda_star_etc_rule()
11581 if (_res == NULL && PyErr_Occurred()) { in lambda_star_etc_rule()
11604 _res = invalid_lambda_star_etc_var; in lambda_star_etc_rule()
11611 _res = NULL; in lambda_star_etc_rule()
11614 return _res; in lambda_star_etc_rule()
11629 arg_ty _res = NULL; in lambda_kwds_rule() local
11646 _res = a; in lambda_kwds_rule()
11647 if (_res == NULL && PyErr_Occurred()) { in lambda_kwds_rule()
11658 _res = NULL; in lambda_kwds_rule()
11661 return _res; in lambda_kwds_rule()
11676 arg_ty _res = NULL; in lambda_param_no_default_rule() local
11693 _res = a; in lambda_param_no_default_rule()
11694 if (_res == NULL && PyErr_Occurred()) { in lambda_param_no_default_rule()
11719 _res = a; in lambda_param_no_default_rule()
11720 if (_res == NULL && PyErr_Occurred()) { in lambda_param_no_default_rule()
11731 _res = NULL; in lambda_param_no_default_rule()
11734 return _res; in lambda_param_no_default_rule()
11749 NameDefaultPair* _res = NULL; in lambda_param_with_default_rule() local
11769 _res = _PyPegen_name_default_pair ( p , a , c , NULL ); in lambda_param_with_default_rule()
11770 if (_res == NULL && PyErr_Occurred()) { in lambda_param_with_default_rule()
11798 _res = _PyPegen_name_default_pair ( p , a , c , NULL ); in lambda_param_with_default_rule()
11799 if (_res == NULL && PyErr_Occurred()) { in lambda_param_with_default_rule()
11810 _res = NULL; in lambda_param_with_default_rule()
11813 return _res; in lambda_param_with_default_rule()
11828 NameDefaultPair* _res = NULL; in lambda_param_maybe_default_rule() local
11848 _res = _PyPegen_name_default_pair ( p , a , c , NULL ); in lambda_param_maybe_default_rule()
11849 if (_res == NULL && PyErr_Occurred()) { in lambda_param_maybe_default_rule()
11877 _res = _PyPegen_name_default_pair ( p , a , c , NULL ); in lambda_param_maybe_default_rule()
11878 if (_res == NULL && PyErr_Occurred()) { in lambda_param_maybe_default_rule()
11889 _res = NULL; in lambda_param_maybe_default_rule()
11892 return _res; in lambda_param_maybe_default_rule()
11907 arg_ty _res = NULL; in lambda_param_rule() local
11939 _res = _PyAST_arg ( a -> v . Name . id , NULL , NULL , EXTRA ); in lambda_param_rule()
11940 if (_res == NULL && PyErr_Occurred()) { in lambda_param_rule()
11951 _res = NULL; in lambda_param_rule()
11954 return _res; in lambda_param_rule()
11969 expr_ty _res = NULL; in disjunction_rule() local
11970 if (_PyPegen_is_memoized(p, disjunction_type, &_res)) { in disjunction_rule()
11972 return _res; in disjunction_rule()
12008_res = _PyAST_BoolOp ( Or , CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) )… in disjunction_rule()
12009 if (_res == NULL && PyErr_Occurred()) { in disjunction_rule()
12032 _res = conjunction_var; in disjunction_rule()
12039 _res = NULL; in disjunction_rule()
12041 _PyPegen_insert_memo(p, _mark, disjunction_type, _res); in disjunction_rule()
12043 return _res; in disjunction_rule()
12058 expr_ty _res = NULL; in conjunction_rule() local
12059 if (_PyPegen_is_memoized(p, conjunction_type, &_res)) { in conjunction_rule()
12061 return _res; in conjunction_rule()
12097_res = _PyAST_BoolOp ( And , CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) … in conjunction_rule()
12098 if (_res == NULL && PyErr_Occurred()) { in conjunction_rule()
12121 _res = inversion_var; in conjunction_rule()
12128 _res = NULL; in conjunction_rule()
12130 _PyPegen_insert_memo(p, _mark, conjunction_type, _res); in conjunction_rule()
12132 return _res; in conjunction_rule()
12147 expr_ty _res = NULL; in inversion_rule() local
12148 if (_PyPegen_is_memoized(p, inversion_type, &_res)) { in inversion_rule()
12150 return _res; in inversion_rule()
12186 _res = _PyAST_UnaryOp ( Not , a , EXTRA ); in inversion_rule()
12187 if (_res == NULL && PyErr_Occurred()) { in inversion_rule()
12210 _res = comparison_var; in inversion_rule()
12217 _res = NULL; in inversion_rule()
12219 _PyPegen_insert_memo(p, _mark, inversion_type, _res); in inversion_rule()
12221 return _res; in inversion_rule()
12236 expr_ty _res = NULL; in comparison_rule() local
12271_res = _PyAST_Compare ( a , CHECK ( asdl_int_seq * , _PyPegen_get_cmpops ( p , b ) ) , CHECK ( asd… in comparison_rule()
12272 if (_res == NULL && PyErr_Occurred()) { in comparison_rule()
12295 _res = bitwise_or_var; in comparison_rule()
12302 _res = NULL; in comparison_rule()
12305 return _res; in comparison_rule()
12330 CmpopExprPair* _res = NULL; in compare_op_bitwise_or_pair_rule() local
12344 _res = eq_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12363 _res = noteq_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12382 _res = lte_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12401 _res = lt_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12420 _res = gte_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12439 _res = gt_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12458 _res = notin_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12477 _res = in_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12496 _res = isnot_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12515 _res = is_bitwise_or_var; in compare_op_bitwise_or_pair_rule()
12522 _res = NULL; in compare_op_bitwise_or_pair_rule()
12525 return _res; in compare_op_bitwise_or_pair_rule()
12540 CmpopExprPair* _res = NULL; in eq_bitwise_or_rule() local
12557 _res = _PyPegen_cmpop_expr_pair ( p , Eq , a ); in eq_bitwise_or_rule()
12558 if (_res == NULL && PyErr_Occurred()) { in eq_bitwise_or_rule()
12569 _res = NULL; in eq_bitwise_or_rule()
12572 return _res; in eq_bitwise_or_rule()
12587 CmpopExprPair* _res = NULL; in noteq_bitwise_or_rule() local
12604 _res = _PyPegen_cmpop_expr_pair ( p , NotEq , a ); in noteq_bitwise_or_rule()
12605 if (_res == NULL && PyErr_Occurred()) { in noteq_bitwise_or_rule()
12616 _res = NULL; in noteq_bitwise_or_rule()
12619 return _res; in noteq_bitwise_or_rule()
12634 CmpopExprPair* _res = NULL; in lte_bitwise_or_rule() local
12651 _res = _PyPegen_cmpop_expr_pair ( p , LtE , a ); in lte_bitwise_or_rule()
12652 if (_res == NULL && PyErr_Occurred()) { in lte_bitwise_or_rule()
12663 _res = NULL; in lte_bitwise_or_rule()
12666 return _res; in lte_bitwise_or_rule()
12681 CmpopExprPair* _res = NULL; in lt_bitwise_or_rule() local
12698 _res = _PyPegen_cmpop_expr_pair ( p , Lt , a ); in lt_bitwise_or_rule()
12699 if (_res == NULL && PyErr_Occurred()) { in lt_bitwise_or_rule()
12710 _res = NULL; in lt_bitwise_or_rule()
12713 return _res; in lt_bitwise_or_rule()
12728 CmpopExprPair* _res = NULL; in gte_bitwise_or_rule() local
12745 _res = _PyPegen_cmpop_expr_pair ( p , GtE , a ); in gte_bitwise_or_rule()
12746 if (_res == NULL && PyErr_Occurred()) { in gte_bitwise_or_rule()
12757 _res = NULL; in gte_bitwise_or_rule()
12760 return _res; in gte_bitwise_or_rule()
12775 CmpopExprPair* _res = NULL; in gt_bitwise_or_rule() local
12792 _res = _PyPegen_cmpop_expr_pair ( p , Gt , a ); in gt_bitwise_or_rule()
12793 if (_res == NULL && PyErr_Occurred()) { in gt_bitwise_or_rule()
12804 _res = NULL; in gt_bitwise_or_rule()
12807 return _res; in gt_bitwise_or_rule()
12822 CmpopExprPair* _res = NULL; in notin_bitwise_or_rule() local
12842 _res = _PyPegen_cmpop_expr_pair ( p , NotIn , a ); in notin_bitwise_or_rule()
12843 if (_res == NULL && PyErr_Occurred()) { in notin_bitwise_or_rule()
12854 _res = NULL; in notin_bitwise_or_rule()
12857 return _res; in notin_bitwise_or_rule()
12872 CmpopExprPair* _res = NULL; in in_bitwise_or_rule() local
12889 _res = _PyPegen_cmpop_expr_pair ( p , In , a ); in in_bitwise_or_rule()
12890 if (_res == NULL && PyErr_Occurred()) { in in_bitwise_or_rule()
12901 _res = NULL; in in_bitwise_or_rule()
12904 return _res; in in_bitwise_or_rule()
12919 CmpopExprPair* _res = NULL; in isnot_bitwise_or_rule() local
12939 _res = _PyPegen_cmpop_expr_pair ( p , IsNot , a ); in isnot_bitwise_or_rule()
12940 if (_res == NULL && PyErr_Occurred()) { in isnot_bitwise_or_rule()
12951 _res = NULL; in isnot_bitwise_or_rule()
12954 return _res; in isnot_bitwise_or_rule()
12969 CmpopExprPair* _res = NULL; in is_bitwise_or_rule() local
12986 _res = _PyPegen_cmpop_expr_pair ( p , Is , a ); in is_bitwise_or_rule()
12987 if (_res == NULL && PyErr_Occurred()) { in is_bitwise_or_rule()
12998 _res = NULL; in is_bitwise_or_rule()
13001 return _res; in is_bitwise_or_rule()
13014 expr_ty _res = NULL; in bitwise_or_rule() local
13015 if (_PyPegen_is_memoized(p, bitwise_or_type, &_res)) { in bitwise_or_rule()
13017 return _res; in bitwise_or_rule()
13022 int tmpvar_2 = _PyPegen_update_memo(p, _mark, bitwise_or_type, _res); in bitwise_or_rule()
13025 return _res; in bitwise_or_rule()
13038 _res = _raw; in bitwise_or_rule()
13042 return _res; in bitwise_or_rule()
13055 expr_ty _res = NULL; in bitwise_or_raw() local
13093 _res = _PyAST_BinOp ( a , BitOr , b , EXTRA ); in bitwise_or_raw()
13094 if (_res == NULL && PyErr_Occurred()) { in bitwise_or_raw()
13117 _res = bitwise_xor_var; in bitwise_or_raw()
13124 _res = NULL; in bitwise_or_raw()
13127 return _res; in bitwise_or_raw()
13140 expr_ty _res = NULL; in bitwise_xor_rule() local
13141 if (_PyPegen_is_memoized(p, bitwise_xor_type, &_res)) { in bitwise_xor_rule()
13143 return _res; in bitwise_xor_rule()
13148 int tmpvar_3 = _PyPegen_update_memo(p, _mark, bitwise_xor_type, _res); in bitwise_xor_rule()
13151 return _res; in bitwise_xor_rule()
13164 _res = _raw; in bitwise_xor_rule()
13168 return _res; in bitwise_xor_rule()
13181 expr_ty _res = NULL; in bitwise_xor_raw() local
13219 _res = _PyAST_BinOp ( a , BitXor , b , EXTRA ); in bitwise_xor_raw()
13220 if (_res == NULL && PyErr_Occurred()) { in bitwise_xor_raw()
13243 _res = bitwise_and_var; in bitwise_xor_raw()
13250 _res = NULL; in bitwise_xor_raw()
13253 return _res; in bitwise_xor_raw()
13266 expr_ty _res = NULL; in bitwise_and_rule() local
13267 if (_PyPegen_is_memoized(p, bitwise_and_type, &_res)) { in bitwise_and_rule()
13269 return _res; in bitwise_and_rule()
13274 int tmpvar_4 = _PyPegen_update_memo(p, _mark, bitwise_and_type, _res); in bitwise_and_rule()
13277 return _res; in bitwise_and_rule()
13290 _res = _raw; in bitwise_and_rule()
13294 return _res; in bitwise_and_rule()
13307 expr_ty _res = NULL; in bitwise_and_raw() local
13345 _res = _PyAST_BinOp ( a , BitAnd , b , EXTRA ); in bitwise_and_raw()
13346 if (_res == NULL && PyErr_Occurred()) { in bitwise_and_raw()
13369 _res = shift_expr_var; in bitwise_and_raw()
13376 _res = NULL; in bitwise_and_raw()
13379 return _res; in bitwise_and_raw()
13392 expr_ty _res = NULL; in shift_expr_rule() local
13393 if (_PyPegen_is_memoized(p, shift_expr_type, &_res)) { in shift_expr_rule()
13395 return _res; in shift_expr_rule()
13400 int tmpvar_5 = _PyPegen_update_memo(p, _mark, shift_expr_type, _res); in shift_expr_rule()
13403 return _res; in shift_expr_rule()
13416 _res = _raw; in shift_expr_rule()
13420 return _res; in shift_expr_rule()
13433 expr_ty _res = NULL; in shift_expr_raw() local
13471 _res = _PyAST_BinOp ( a , LShift , b , EXTRA ); in shift_expr_raw()
13472 if (_res == NULL && PyErr_Occurred()) { in shift_expr_raw()
13510 _res = _PyAST_BinOp ( a , RShift , b , EXTRA ); in shift_expr_raw()
13511 if (_res == NULL && PyErr_Occurred()) { in shift_expr_raw()
13534 _res = sum_var; in shift_expr_raw()
13541 _res = NULL; in shift_expr_raw()
13544 return _res; in shift_expr_raw()
13557 expr_ty _res = NULL; in sum_rule() local
13558 if (_PyPegen_is_memoized(p, sum_type, &_res)) { in sum_rule()
13560 return _res; in sum_rule()
13565 int tmpvar_6 = _PyPegen_update_memo(p, _mark, sum_type, _res); in sum_rule()
13568 return _res; in sum_rule()
13581 _res = _raw; in sum_rule()
13585 return _res; in sum_rule()
13598 expr_ty _res = NULL; in sum_raw() local
13636 _res = _PyAST_BinOp ( a , Add , b , EXTRA ); in sum_raw()
13637 if (_res == NULL && PyErr_Occurred()) { in sum_raw()
13675 _res = _PyAST_BinOp ( a , Sub , b , EXTRA ); in sum_raw()
13676 if (_res == NULL && PyErr_Occurred()) { in sum_raw()
13699 _res = term_var; in sum_raw()
13706 _res = NULL; in sum_raw()
13709 return _res; in sum_raw()
13728 expr_ty _res = NULL; in term_rule() local
13729 if (_PyPegen_is_memoized(p, term_type, &_res)) { in term_rule()
13731 return _res; in term_rule()
13736 int tmpvar_7 = _PyPegen_update_memo(p, _mark, term_type, _res); in term_rule()
13739 return _res; in term_rule()
13752 _res = _raw; in term_rule()
13756 return _res; in term_rule()
13769 expr_ty _res = NULL; in term_raw() local
13807 _res = _PyAST_BinOp ( a , Mult , b , EXTRA ); in term_raw()
13808 if (_res == NULL && PyErr_Occurred()) { in term_raw()
13846 _res = _PyAST_BinOp ( a , Div , b , EXTRA ); in term_raw()
13847 if (_res == NULL && PyErr_Occurred()) { in term_raw()
13885 _res = _PyAST_BinOp ( a , FloorDiv , b , EXTRA ); in term_raw()
13886 if (_res == NULL && PyErr_Occurred()) { in term_raw()
13924 _res = _PyAST_BinOp ( a , Mod , b , EXTRA ); in term_raw()
13925 if (_res == NULL && PyErr_Occurred()) { in term_raw()
13963_res = CHECK_VERSION ( expr_ty , 5 , "The '@' operator is" , _PyAST_BinOp ( a , MatMult , b , EXTR… in term_raw()
13964 if (_res == NULL && PyErr_Occurred()) { in term_raw()
13987 _res = factor_var; in term_raw()
13994 _res = NULL; in term_raw()
13997 return _res; in term_raw()
14012 expr_ty _res = NULL; in factor_rule() local
14013 if (_PyPegen_is_memoized(p, factor_type, &_res)) { in factor_rule()
14015 return _res; in factor_rule()
14051 _res = _PyAST_UnaryOp ( UAdd , a , EXTRA ); in factor_rule()
14052 if (_res == NULL && PyErr_Occurred()) { in factor_rule()
14087 _res = _PyAST_UnaryOp ( USub , a , EXTRA ); in factor_rule()
14088 if (_res == NULL && PyErr_Occurred()) { in factor_rule()
14123 _res = _PyAST_UnaryOp ( Invert , a , EXTRA ); in factor_rule()
14124 if (_res == NULL && PyErr_Occurred()) { in factor_rule()
14147 _res = power_var; in factor_rule()
14154 _res = NULL; in factor_rule()
14156 _PyPegen_insert_memo(p, _mark, factor_type, _res); in factor_rule()
14158 return _res; in factor_rule()
14173 expr_ty _res = NULL; in power_rule() local
14211 _res = _PyAST_BinOp ( a , Pow , b , EXTRA ); in power_rule()
14212 if (_res == NULL && PyErr_Occurred()) { in power_rule()
14235 _res = await_primary_var; in power_rule()
14242 _res = NULL; in power_rule()
14245 return _res; in power_rule()
14260 expr_ty _res = NULL; in await_primary_rule() local
14261 if (_PyPegen_is_memoized(p, await_primary_type, &_res)) { in await_primary_rule()
14263 return _res; in await_primary_rule()
14299_res = CHECK_VERSION ( expr_ty , 5 , "Await expressions are" , _PyAST_Await ( a , EXTRA ) ); in await_primary_rule()
14300 if (_res == NULL && PyErr_Occurred()) { in await_primary_rule()
14323 _res = primary_var; in await_primary_rule()
14330 _res = NULL; in await_primary_rule()
14332 _PyPegen_insert_memo(p, _mark, await_primary_type, _res); in await_primary_rule()
14334 return _res; in await_primary_rule()
14352 expr_ty _res = NULL; in primary_rule() local
14353 if (_PyPegen_is_memoized(p, primary_type, &_res)) { in primary_rule()
14355 return _res; in primary_rule()
14360 int tmpvar_8 = _PyPegen_update_memo(p, _mark, primary_type, _res); in primary_rule()
14363 return _res; in primary_rule()
14376 _res = _raw; in primary_rule()
14380 return _res; in primary_rule()
14393 expr_ty _res = NULL; in primary_raw() local
14431 _res = _PyAST_Attribute ( a , b -> v . Name . id , Load , EXTRA ); in primary_raw()
14432 if (_res == NULL && PyErr_Occurred()) { in primary_raw()
14467_res = _PyAST_Call ( a , CHECK ( asdl_expr_seq * , ( asdl_expr_seq * ) _PyPegen_singleton_seq ( p … in primary_raw()
14468 if (_res == NULL && PyErr_Occurred()) { in primary_raw()
14509_res = _PyAST_Call ( a , ( b ) ? ( ( expr_ty ) b ) -> v . Call . args : NULL , ( b ) ? ( ( expr_ty… in primary_raw()
14510 if (_res == NULL && PyErr_Occurred()) { in primary_raw()
14551 _res = _PyAST_Subscript ( a , b , Load , EXTRA ); in primary_raw()
14552 if (_res == NULL && PyErr_Occurred()) { in primary_raw()
14575 _res = atom_var; in primary_raw()
14582 _res = NULL; in primary_raw()
14585 return _res; in primary_raw()
14600 expr_ty _res = NULL; in slices_rule() local
14625 _res = a; in slices_rule()
14626 if (_res == NULL && PyErr_Occurred()) { in slices_rule()
14662 _res = _PyAST_Tuple ( a , Load , EXTRA ); in slices_rule()
14663 if (_res == NULL && PyErr_Occurred()) { in slices_rule()
14674 _res = NULL; in slices_rule()
14677 return _res; in slices_rule()
14692 expr_ty _res = NULL; in slice_rule() local
14733 _res = _PyAST_Slice ( a , b , c , EXTRA ); in slice_rule()
14734 if (_res == NULL && PyErr_Occurred()) { in slice_rule()
14757 _res = a; in slice_rule()
14758 if (_res == NULL && PyErr_Occurred()) { in slice_rule()
14769 _res = NULL; in slice_rule()
14772 return _res; in slice_rule()
14797 expr_ty _res = NULL; in atom_rule() local
14820 _res = name_var; in atom_rule()
14848 _res = _PyAST_Constant ( Py_True , NULL , EXTRA ); in atom_rule()
14849 if (_res == NULL && PyErr_Occurred()) { in atom_rule()
14881 _res = _PyAST_Constant ( Py_False , NULL , EXTRA ); in atom_rule()
14882 if (_res == NULL && PyErr_Occurred()) { in atom_rule()
14914 _res = _PyAST_Constant ( Py_None , NULL , EXTRA ); in atom_rule()
14915 if (_res == NULL && PyErr_Occurred()) { in atom_rule()
14940 _res = strings_var; in atom_rule()
14959 _res = number_var; in atom_rule()
14980 _res = _tmp_111_var; in atom_rule()
15001 _res = _tmp_112_var; in atom_rule()
15022 _res = _tmp_113_var; in atom_rule()
15050 _res = _PyAST_Constant ( Py_Ellipsis , NULL , EXTRA ); in atom_rule()
15051 if (_res == NULL && PyErr_Occurred()) { in atom_rule()
15062 _res = NULL; in atom_rule()
15065 return _res; in atom_rule()
15080 expr_ty _res = NULL; in strings_rule() local
15081 if (_PyPegen_is_memoized(p, strings_type, &_res)) { in strings_rule()
15083 return _res; in strings_rule()
15098 _res = _PyPegen_concatenate_strings ( p , a ); in strings_rule()
15099 if (_res == NULL && PyErr_Occurred()) { in strings_rule()
15110 _res = NULL; in strings_rule()
15112 _PyPegen_insert_memo(p, _mark, strings_type, _res); in strings_rule()
15114 return _res; in strings_rule()
15129 expr_ty _res = NULL; in list_rule() local
15167 _res = _PyAST_List ( a , Load , EXTRA ); in list_rule()
15168 if (_res == NULL && PyErr_Occurred()) { in list_rule()
15179 _res = NULL; in list_rule()
15182 return _res; in list_rule()
15197 expr_ty _res = NULL; in listcomp_rule() local
15238 _res = _PyAST_ListComp ( a , b , EXTRA ); in listcomp_rule()
15239 if (_res == NULL && PyErr_Occurred()) { in listcomp_rule()
15262 _res = invalid_comprehension_var; in listcomp_rule()
15269 _res = NULL; in listcomp_rule()
15272 return _res; in listcomp_rule()
15287 expr_ty _res = NULL; in tuple_rule() local
15325 _res = _PyAST_Tuple ( a , Load , EXTRA ); in tuple_rule()
15326 if (_res == NULL && PyErr_Occurred()) { in tuple_rule()
15337 _res = NULL; in tuple_rule()
15340 return _res; in tuple_rule()
15355 expr_ty _res = NULL; in group_rule() local
15375 _res = a; in group_rule()
15376 if (_res == NULL && PyErr_Occurred()) { in group_rule()
15399 _res = invalid_group_var; in group_rule()
15406 _res = NULL; in group_rule()
15409 return _res; in group_rule()
15426 expr_ty _res = NULL; in genexp_rule() local
15467 _res = _PyAST_GeneratorExp ( a , b , EXTRA ); in genexp_rule()
15468 if (_res == NULL && PyErr_Occurred()) { in genexp_rule()
15491 _res = invalid_comprehension_var; in genexp_rule()
15498 _res = NULL; in genexp_rule()
15501 return _res; in genexp_rule()
15516 expr_ty _res = NULL; in set_rule() local
15554 _res = _PyAST_Set ( a , EXTRA ); in set_rule()
15555 if (_res == NULL && PyErr_Occurred()) { in set_rule()
15566 _res = NULL; in set_rule()
15569 return _res; in set_rule()
15584 expr_ty _res = NULL; in setcomp_rule() local
15625 _res = _PyAST_SetComp ( a , b , EXTRA ); in setcomp_rule()
15626 if (_res == NULL && PyErr_Occurred()) { in setcomp_rule()
15649 _res = invalid_comprehension_var; in setcomp_rule()
15656 _res = NULL; in setcomp_rule()
15659 return _res; in setcomp_rule()
15674 expr_ty _res = NULL; in dict_rule() local
15712_res = _PyAST_Dict ( CHECK ( asdl_expr_seq * , _PyPegen_get_keys ( p , a ) ) , CHECK ( asdl_expr_s… in dict_rule()
15713 if (_res == NULL && PyErr_Occurred()) { in dict_rule()
15742 _res = _PyPegen_dummy_name(p, _literal, invalid_double_starred_kvpairs_var, _literal_1); in dict_rule()
15749 _res = NULL; in dict_rule()
15752 return _res; in dict_rule()
15767 expr_ty _res = NULL; in dictcomp_rule() local
15808 _res = _PyAST_DictComp ( a -> key , a -> value , b , EXTRA ); in dictcomp_rule()
15809 if (_res == NULL && PyErr_Occurred()) { in dictcomp_rule()
15832 _res = invalid_dict_comprehension_var; in dictcomp_rule()
15839 _res = NULL; in dictcomp_rule()
15842 return _res; in dictcomp_rule()
15857 asdl_seq* _res = NULL; in double_starred_kvpairs_rule() local
15875 _res = a; in double_starred_kvpairs_rule()
15876 if (_res == NULL && PyErr_Occurred()) { in double_starred_kvpairs_rule()
15887 _res = NULL; in double_starred_kvpairs_rule()
15890 return _res; in double_starred_kvpairs_rule()
15905 KeyValuePair* _res = NULL; in double_starred_kvpair_rule() local
15922 _res = _PyPegen_key_value_pair ( p , NULL , a ); in double_starred_kvpair_rule()
15923 if (_res == NULL && PyErr_Occurred()) { in double_starred_kvpair_rule()
15946 _res = kvpair_var; in double_starred_kvpair_rule()
15953 _res = NULL; in double_starred_kvpair_rule()
15956 return _res; in double_starred_kvpair_rule()
15971 KeyValuePair* _res = NULL; in kvpair_rule() local
15991 _res = _PyPegen_key_value_pair ( p , a , b ); in kvpair_rule()
15992 if (_res == NULL && PyErr_Occurred()) { in kvpair_rule()
16003 _res = NULL; in kvpair_rule()
16006 return _res; in kvpair_rule()
16021 asdl_comprehension_seq* _res = NULL; in for_if_clauses_rule() local
16035 _res = a; in for_if_clauses_rule()
16036 if (_res == NULL && PyErr_Occurred()) { in for_if_clauses_rule()
16047 _res = NULL; in for_if_clauses_rule()
16050 return _res; in for_if_clauses_rule()
16068 comprehension_ty _res = NULL; in for_if_clause_rule() local
16100_res = CHECK_VERSION ( comprehension_ty , 6 , "Async comprehensions are" , _PyAST_comprehension ( … in for_if_clause_rule()
16101 if (_res == NULL && PyErr_Occurred()) { in for_if_clause_rule()
16143 _res = _PyAST_comprehension ( a , b , c , 0 , p -> arena ); in for_if_clause_rule()
16144 if (_res == NULL && PyErr_Occurred()) { in for_if_clause_rule()
16171 _res = invalid_for_target_var; in for_if_clause_rule()
16178 _res = NULL; in for_if_clause_rule()
16181 return _res; in for_if_clause_rule()
16196 expr_ty _res = NULL; in yield_expr_rule() local
16234 _res = _PyAST_YieldFrom ( a , EXTRA ); in yield_expr_rule()
16235 if (_res == NULL && PyErr_Occurred()) { in yield_expr_rule()
16270 _res = _PyAST_Yield ( a , EXTRA ); in yield_expr_rule()
16271 if (_res == NULL && PyErr_Occurred()) { in yield_expr_rule()
16282 _res = NULL; in yield_expr_rule()
16285 return _res; in yield_expr_rule()
16300 expr_ty _res = NULL; in arguments_rule() local
16301 if (_PyPegen_is_memoized(p, arguments_type, &_res)) { in arguments_rule()
16303 return _res; in arguments_rule()
16324 _res = a; in arguments_rule()
16325 if (_res == NULL && PyErr_Occurred()) { in arguments_rule()
16348 _res = invalid_arguments_var; in arguments_rule()
16355 _res = NULL; in arguments_rule()
16357 _PyPegen_insert_memo(p, _mark, arguments_type, _res); in arguments_rule()
16359 return _res; in arguments_rule()
16376 expr_ty _res = NULL; in args_rule() local
16411 _res = _PyPegen_collect_call_seqs ( p , a , b , EXTRA ); in args_rule()
16412 if (_res == NULL && PyErr_Occurred()) { in args_rule()
16444_res = _PyAST_Call ( _PyPegen_dummy_name ( p ) , CHECK_NULL_ALLOWED ( asdl_expr_seq * , _PyPegen_s… in args_rule()
16445 if (_res == NULL && PyErr_Occurred()) { in args_rule()
16456 _res = NULL; in args_rule()
16459 return _res; in args_rule()
16477 asdl_seq* _res = NULL; in kwargs_rule() local
16497 _res = _PyPegen_join_sequences ( p , a , b ); in kwargs_rule()
16498 if (_res == NULL && PyErr_Occurred()) { in kwargs_rule()
16521 _res = _gather_130_var; in kwargs_rule()
16540 _res = _gather_132_var; in kwargs_rule()
16547 _res = NULL; in kwargs_rule()
16550 return _res; in kwargs_rule()
16565 expr_ty _res = NULL; in starred_expression_rule() local
16600 _res = _PyAST_Starred ( a , Load , EXTRA ); in starred_expression_rule()
16601 if (_res == NULL && PyErr_Occurred()) { in starred_expression_rule()
16612 _res = NULL; in starred_expression_rule()
16615 return _res; in starred_expression_rule()
16630 KeywordOrStarred* _res = NULL; in kwarg_or_starred_rule() local
16653 _res = invalid_kwarg_var; in kwarg_or_starred_rule()
16687_res = _PyPegen_keyword_or_starred ( p , CHECK ( keyword_ty , _PyAST_keyword ( a -> v . Name . id … in kwarg_or_starred_rule()
16688 if (_res == NULL && PyErr_Occurred()) { in kwarg_or_starred_rule()
16711 _res = _PyPegen_keyword_or_starred ( p , a , 0 ); in kwarg_or_starred_rule()
16712 if (_res == NULL && PyErr_Occurred()) { in kwarg_or_starred_rule()
16723 _res = NULL; in kwarg_or_starred_rule()
16726 return _res; in kwarg_or_starred_rule()
16741 KeywordOrStarred* _res = NULL; in kwarg_or_double_starred_rule() local
16764 _res = invalid_kwarg_var; in kwarg_or_double_starred_rule()
16798_res = _PyPegen_keyword_or_starred ( p , CHECK ( keyword_ty , _PyAST_keyword ( a -> v . Name . id … in kwarg_or_double_starred_rule()
16799 if (_res == NULL && PyErr_Occurred()) { in kwarg_or_double_starred_rule()
16834_res = _PyPegen_keyword_or_starred ( p , CHECK ( keyword_ty , _PyAST_keyword ( NULL , a , EXTRA ) … in kwarg_or_double_starred_rule()
16835 if (_res == NULL && PyErr_Occurred()) { in kwarg_or_double_starred_rule()
16846 _res = NULL; in kwarg_or_double_starred_rule()
16849 return _res; in kwarg_or_double_starred_rule()
16864 expr_ty _res = NULL; in star_targets_rule() local
16889 _res = a; in star_targets_rule()
16890 if (_res == NULL && PyErr_Occurred()) { in star_targets_rule()
16929_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Sto… in star_targets_rule()
16930 if (_res == NULL && PyErr_Occurred()) { in star_targets_rule()
16941 _res = NULL; in star_targets_rule()
16944 return _res; in star_targets_rule()
16959 asdl_expr_seq* _res = NULL; in star_targets_list_seq_rule() local
16977 _res = a; in star_targets_list_seq_rule()
16978 if (_res == NULL && PyErr_Occurred()) { in star_targets_list_seq_rule()
16989 _res = NULL; in star_targets_list_seq_rule()
16992 return _res; in star_targets_list_seq_rule()
17007 asdl_expr_seq* _res = NULL; in star_targets_tuple_seq_rule() local
17028 _res = ( asdl_expr_seq * ) _PyPegen_seq_insert_in_front ( p , a , b ); in star_targets_tuple_seq_rule()
17029 if (_res == NULL && PyErr_Occurred()) { in star_targets_tuple_seq_rule()
17055 _res = ( asdl_expr_seq * ) _PyPegen_singleton_seq ( p , a ); in star_targets_tuple_seq_rule()
17056 if (_res == NULL && PyErr_Occurred()) { in star_targets_tuple_seq_rule()
17067 _res = NULL; in star_targets_tuple_seq_rule()
17070 return _res; in star_targets_tuple_seq_rule()
17085 expr_ty _res = NULL; in star_target_rule() local
17086 if (_PyPegen_is_memoized(p, star_target_type, &_res)) { in star_target_rule()
17088 return _res; in star_target_rule()
17124_res = _PyAST_Starred ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a , Store ) ) , Store , … in star_target_rule()
17125 if (_res == NULL && PyErr_Occurred()) { in star_target_rule()
17148 _res = target_with_star_atom_var; in star_target_rule()
17155 _res = NULL; in star_target_rule()
17157 _PyPegen_insert_memo(p, _mark, star_target_type, _res); in star_target_rule()
17159 return _res; in star_target_rule()
17177 expr_ty _res = NULL; in target_with_star_atom_rule() local
17178 if (_PyPegen_is_memoized(p, target_with_star_atom_type, &_res)) { in target_with_star_atom_rule()
17180 return _res; in target_with_star_atom_rule()
17221 _res = _PyAST_Attribute ( a , b -> v . Name . id , Store , EXTRA ); in target_with_star_atom_rule()
17222 if (_res == NULL && PyErr_Occurred()) { in target_with_star_atom_rule()
17265 _res = _PyAST_Subscript ( a , b , Store , EXTRA ); in target_with_star_atom_rule()
17266 if (_res == NULL && PyErr_Occurred()) { in target_with_star_atom_rule()
17289 _res = star_atom_var; in target_with_star_atom_rule()
17296 _res = NULL; in target_with_star_atom_rule()
17298 _PyPegen_insert_memo(p, _mark, target_with_star_atom_type, _res); in target_with_star_atom_rule()
17300 return _res; in target_with_star_atom_rule()
17319 expr_ty _res = NULL; in star_atom_rule() local
17342 _res = _PyPegen_set_expr_context ( p , a , Store ); in star_atom_rule()
17343 if (_res == NULL && PyErr_Occurred()) { in star_atom_rule()
17372 _res = _PyPegen_set_expr_context ( p , a , Store ); in star_atom_rule()
17373 if (_res == NULL && PyErr_Occurred()) { in star_atom_rule()
17411 _res = _PyAST_Tuple ( a , Store , EXTRA ); in star_atom_rule()
17412 if (_res == NULL && PyErr_Occurred()) { in star_atom_rule()
17450 _res = _PyAST_List ( a , Store , EXTRA ); in star_atom_rule()
17451 if (_res == NULL && PyErr_Occurred()) { in star_atom_rule()
17462 _res = NULL; in star_atom_rule()
17465 return _res; in star_atom_rule()
17480 expr_ty _res = NULL; in single_target_rule() local
17494 _res = single_subscript_attribute_target_var; in single_target_rule()
17513 _res = _PyPegen_set_expr_context ( p , a , Store ); in single_target_rule()
17514 if (_res == NULL && PyErr_Occurred()) { in single_target_rule()
17543 _res = a; in single_target_rule()
17544 if (_res == NULL && PyErr_Occurred()) { in single_target_rule()
17555 _res = NULL; in single_target_rule()
17558 return _res; in single_target_rule()
17575 expr_ty _res = NULL; in single_subscript_attribute_target_rule() local
17615 _res = _PyAST_Attribute ( a , b -> v . Name . id , Store , EXTRA ); in single_subscript_attribute_target_rule()
17616 if (_res == NULL && PyErr_Occurred()) { in single_subscript_attribute_target_rule()
17659 _res = _PyAST_Subscript ( a , b , Store , EXTRA ); in single_subscript_attribute_target_rule()
17660 if (_res == NULL && PyErr_Occurred()) { in single_subscript_attribute_target_rule()
17671 _res = NULL; in single_subscript_attribute_target_rule()
17674 return _res; in single_subscript_attribute_target_rule()
17689 asdl_expr_seq* _res = NULL; in del_targets_rule() local
17707 _res = a; in del_targets_rule()
17708 if (_res == NULL && PyErr_Occurred()) { in del_targets_rule()
17719 _res = NULL; in del_targets_rule()
17722 return _res; in del_targets_rule()
17740 expr_ty _res = NULL; in del_target_rule() local
17741 if (_PyPegen_is_memoized(p, del_target_type, &_res)) { in del_target_rule()
17743 return _res; in del_target_rule()
17784 _res = _PyAST_Attribute ( a , b -> v . Name . id , Del , EXTRA ); in del_target_rule()
17785 if (_res == NULL && PyErr_Occurred()) { in del_target_rule()
17828 _res = _PyAST_Subscript ( a , b , Del , EXTRA ); in del_target_rule()
17829 if (_res == NULL && PyErr_Occurred()) { in del_target_rule()
17852 _res = del_t_atom_var; in del_target_rule()
17859 _res = NULL; in del_target_rule()
17861 _PyPegen_insert_memo(p, _mark, del_target_type, _res); in del_target_rule()
17863 return _res; in del_target_rule()
17878 expr_ty _res = NULL; in del_t_atom_rule() local
17901 _res = _PyPegen_set_expr_context ( p , a , Del ); in del_t_atom_rule()
17902 if (_res == NULL && PyErr_Occurred()) { in del_t_atom_rule()
17931 _res = _PyPegen_set_expr_context ( p , a , Del ); in del_t_atom_rule()
17932 if (_res == NULL && PyErr_Occurred()) { in del_t_atom_rule()
17970 _res = _PyAST_Tuple ( a , Del , EXTRA ); in del_t_atom_rule()
17971 if (_res == NULL && PyErr_Occurred()) { in del_t_atom_rule()
18009 _res = _PyAST_List ( a , Del , EXTRA ); in del_t_atom_rule()
18010 if (_res == NULL && PyErr_Occurred()) { in del_t_atom_rule()
18021 _res = NULL; in del_t_atom_rule()
18024 return _res; in del_t_atom_rule()
18042 expr_ty _res = NULL; in t_primary_rule() local
18043 if (_PyPegen_is_memoized(p, t_primary_type, &_res)) { in t_primary_rule()
18045 return _res; in t_primary_rule()
18050 int tmpvar_9 = _PyPegen_update_memo(p, _mark, t_primary_type, _res); in t_primary_rule()
18053 return _res; in t_primary_rule()
18066 _res = _raw; in t_primary_rule()
18070 return _res; in t_primary_rule()
18083 expr_ty _res = NULL; in t_primary_raw() local
18123 _res = _PyAST_Attribute ( a , b -> v . Name . id , Load , EXTRA ); in t_primary_raw()
18124 if (_res == NULL && PyErr_Occurred()) { in t_primary_raw()
18167 _res = _PyAST_Subscript ( a , b , Load , EXTRA ); in t_primary_raw()
18168 if (_res == NULL && PyErr_Occurred()) { in t_primary_raw()
18205_res = _PyAST_Call ( a , CHECK ( asdl_expr_seq * , ( asdl_expr_seq * ) _PyPegen_singleton_seq ( p … in t_primary_raw()
18206 if (_res == NULL && PyErr_Occurred()) { in t_primary_raw()
18249_res = _PyAST_Call ( a , ( b ) ? ( ( expr_ty ) b ) -> v . Call . args : NULL , ( b ) ? ( ( expr_ty… in t_primary_raw()
18250 if (_res == NULL && PyErr_Occurred()) { in t_primary_raw()
18275 _res = a; in t_primary_raw()
18276 if (_res == NULL && PyErr_Occurred()) { in t_primary_raw()
18287 _res = NULL; in t_primary_raw()
18290 return _res; in t_primary_raw()
18305 void * _res = NULL; in t_lookahead_rule() local
18319 _res = _literal; in t_lookahead_rule()
18338 _res = _literal; in t_lookahead_rule()
18357 _res = _literal; in t_lookahead_rule()
18364 _res = NULL; in t_lookahead_rule()
18367 return _res; in t_lookahead_rule()
18388 void * _res = NULL; in invalid_arguments_rule() local
18408_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "iterable argument unpacking follows keyword argume… in invalid_arguments_rule()
18409 if (_res == NULL && PyErr_Occurred()) { in invalid_arguments_rule()
18442_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , PyPegen_last_item ( b , comprehension_ty ) -> target ,… in invalid_arguments_rule()
18443 if (_res == NULL && PyErr_Occurred()) { in invalid_arguments_rule()
18475_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "invalid syntax. Maybe you meant '==' or ':=' inst… in invalid_arguments_rule()
18476 if (_res == NULL && PyErr_Occurred()) { in invalid_arguments_rule()
18502 _res = _PyPegen_nonparen_genexp_in_call ( p , a , b ); in invalid_arguments_rule()
18503 if (_res == NULL && PyErr_Occurred()) { in invalid_arguments_rule()
18535_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , asdl_seq_GET ( b , b -> size - 1 ) -> target , "Genera… in invalid_arguments_rule()
18536 if (_res == NULL && PyErr_Occurred()) { in invalid_arguments_rule()
18565 _res = _PyPegen_arguments_parsing_error ( p , a ); in invalid_arguments_rule()
18566 if (_res == NULL && PyErr_Occurred()) { in invalid_arguments_rule()
18577 _res = NULL; in invalid_arguments_rule()
18580 return _res; in invalid_arguments_rule()
18598 void * _res = NULL; in invalid_kwarg_rule() local
18615_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "cannot assign to %s" , PyBytes_AS_STRING ( a -> b… in invalid_kwarg_rule()
18616 if (_res == NULL && PyErr_Occurred()) { in invalid_kwarg_rule()
18648_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "invalid syntax. Maybe you meant '==' or ':=' inst… in invalid_kwarg_rule()
18649 if (_res == NULL && PyErr_Occurred()) { in invalid_kwarg_rule()
18677_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "expression cannot contain assignment, perhaps you… in invalid_kwarg_rule()
18678 if (_res == NULL && PyErr_Occurred()) { in invalid_kwarg_rule()
18689 _res = NULL; in invalid_kwarg_rule()
18692 return _res; in invalid_kwarg_rule()
18710 expr_ty _res = NULL; in expression_without_invalid_rule() local
18754 _res = _PyAST_IfExp ( b , a , c , EXTRA ); in expression_without_invalid_rule()
18755 if (_res == NULL && PyErr_Occurred()) { in expression_without_invalid_rule()
18778 _res = disjunction_var; in expression_without_invalid_rule()
18797 _res = lambdef_var; in expression_without_invalid_rule()
18804 _res = NULL; in expression_without_invalid_rule()
18807 return _res; in expression_without_invalid_rule()
18822 void * _res = NULL; in invalid_legacy_expression_rule() local
18841_res = _PyPegen_check_legacy_stmt ( p , a ) ? RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "Missing pa… in invalid_legacy_expression_rule()
18842 if (_res == NULL && PyErr_Occurred()) { in invalid_legacy_expression_rule()
18853 _res = NULL; in invalid_legacy_expression_rule()
18856 return _res; in invalid_legacy_expression_rule()
18873 void * _res = NULL; in invalid_expression_rule() local
18892_res = _PyPegen_check_legacy_stmt ( p , a ) ? NULL : p -> tokens [ p -> mark - 1 ] -> level == 0 ?… in invalid_expression_rule()
18893 if (_res == NULL && PyErr_Occurred()) { in invalid_expression_rule()
18924_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "expected 'else' after 'if' expression" ); in invalid_expression_rule()
18925 if (_res == NULL && PyErr_Occurred()) { in invalid_expression_rule()
18936 _res = NULL; in invalid_expression_rule()
18939 return _res; in invalid_expression_rule()
18957 void * _res = NULL; in invalid_named_expression_rule() local
18977_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "cannot use assignment expressions with %s" , _PyPe… in invalid_named_expression_rule()
18978 if (_res == NULL && PyErr_Occurred()) { in invalid_named_expression_rule()
19009_res = p -> in_raw_rule ? NULL : RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "invalid syntax. Maybe y… in invalid_named_expression_rule()
19010 if (_res == NULL && PyErr_Occurred()) { in invalid_named_expression_rule()
19043_res = p -> in_raw_rule ? NULL : RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "cannot assign to %s here… in invalid_named_expression_rule()
19044 if (_res == NULL && PyErr_Occurred()) { in invalid_named_expression_rule()
19055 _res = NULL; in invalid_named_expression_rule()
19058 return _res; in invalid_named_expression_rule()
19079 void * _res = NULL; in invalid_assignment_rule() local
19099_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "only single target (not %s) can be annotated" , _P… in invalid_assignment_rule()
19100 if (_res == NULL && PyErr_Occurred()) { in invalid_assignment_rule()
19135_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "only single target (not tuple) can be annotated" ); in invalid_assignment_rule()
19136 if (_res == NULL && PyErr_Occurred()) { in invalid_assignment_rule()
19165 _res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "illegal target for annotation" ); in invalid_assignment_rule()
19166 if (_res == NULL && PyErr_Occurred()) { in invalid_assignment_rule()
19195 _res = RAISE_SYNTAX_ERROR_INVALID_TARGET ( STAR_TARGETS , a ); in invalid_assignment_rule()
19196 if (_res == NULL && PyErr_Occurred()) { in invalid_assignment_rule()
19225_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "assignment to yield expression not possible" ); in invalid_assignment_rule()
19226 if (_res == NULL && PyErr_Occurred()) { in invalid_assignment_rule()
19255_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "'%s' is an illegal expression for augmented assign… in invalid_assignment_rule()
19256 if (_res == NULL && PyErr_Occurred()) { in invalid_assignment_rule()
19267 _res = NULL; in invalid_assignment_rule()
19270 return _res; in invalid_assignment_rule()
19285 expr_ty _res = NULL; in invalid_ann_assign_target_rule() local
19299 _res = list_var; in invalid_ann_assign_target_rule()
19318 _res = tuple_var; in invalid_ann_assign_target_rule()
19343 _res = a; in invalid_ann_assign_target_rule()
19344 if (_res == NULL && PyErr_Occurred()) { in invalid_ann_assign_target_rule()
19355 _res = NULL; in invalid_ann_assign_target_rule()
19358 return _res; in invalid_ann_assign_target_rule()
19373 void * _res = NULL; in invalid_del_stmt_rule() local
19390 _res = RAISE_SYNTAX_ERROR_INVALID_TARGET ( DEL_TARGETS , a ); in invalid_del_stmt_rule()
19391 if (_res == NULL && PyErr_Occurred()) { in invalid_del_stmt_rule()
19402 _res = NULL; in invalid_del_stmt_rule()
19405 return _res; in invalid_del_stmt_rule()
19420 void * _res = NULL; in invalid_block_rule() local
19436 _res = RAISE_INDENTATION_ERROR ( "expected an indented block" ); in invalid_block_rule()
19437 if (_res == NULL && PyErr_Occurred()) { in invalid_block_rule()
19448 _res = NULL; in invalid_block_rule()
19451 return _res; in invalid_block_rule()
19469 void * _res = NULL; in invalid_comprehension_rule() local
19489_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "iterable unpacking cannot be used in comprehension… in invalid_comprehension_rule()
19490 if (_res == NULL && PyErr_Occurred()) { in invalid_comprehension_rule()
19525_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , PyPegen_last_item ( b , expr_ty ) , "did you forget pa… in invalid_comprehension_rule()
19526 if (_res == NULL && PyErr_Occurred()) { in invalid_comprehension_rule()
19558_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "did you forget parentheses around the comprehensi… in invalid_comprehension_rule()
19559 if (_res == NULL && PyErr_Occurred()) { in invalid_comprehension_rule()
19570 _res = NULL; in invalid_comprehension_rule()
19573 return _res; in invalid_comprehension_rule()
19588 void * _res = NULL; in invalid_dict_comprehension_rule() local
19614_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "dict unpacking cannot be used in dict comprehensio… in invalid_dict_comprehension_rule()
19615 if (_res == NULL && PyErr_Occurred()) { in invalid_dict_comprehension_rule()
19626 _res = NULL; in invalid_dict_comprehension_rule()
19629 return _res; in invalid_dict_comprehension_rule()
19644 void * _res = NULL; in invalid_parameters_rule() local
19664_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "non-default argument follows default argument" ); in invalid_parameters_rule()
19665 if (_res == NULL && PyErr_Occurred()) { in invalid_parameters_rule()
19676 _res = NULL; in invalid_parameters_rule()
19679 return _res; in invalid_parameters_rule()
19694 void * _res = NULL; in invalid_parameters_helper_rule() local
19708 _res = _PyPegen_singleton_seq ( p , a ); in invalid_parameters_helper_rule()
19709 if (_res == NULL && PyErr_Occurred()) { in invalid_parameters_helper_rule()
19732 _res = _loop1_157_var; in invalid_parameters_helper_rule()
19739 _res = NULL; in invalid_parameters_helper_rule()
19742 return _res; in invalid_parameters_helper_rule()
19758 void * _res = NULL; in invalid_lambda_parameters_rule() local
19778_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "non-default argument follows default argument" ); in invalid_lambda_parameters_rule()
19779 if (_res == NULL && PyErr_Occurred()) { in invalid_lambda_parameters_rule()
19790 _res = NULL; in invalid_lambda_parameters_rule()
19793 return _res; in invalid_lambda_parameters_rule()
19810 void * _res = NULL; in invalid_lambda_parameters_helper_rule() local
19824 _res = _PyPegen_singleton_seq ( p , a ); in invalid_lambda_parameters_helper_rule()
19825 if (_res == NULL && PyErr_Occurred()) { in invalid_lambda_parameters_helper_rule()
19848 _res = _loop1_159_var; in invalid_lambda_parameters_helper_rule()
19855 _res = NULL; in invalid_lambda_parameters_helper_rule()
19858 return _res; in invalid_lambda_parameters_helper_rule()
19873 void * _res = NULL; in invalid_star_etc_rule() local
19890 _res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "named arguments must follow bare *" ); in invalid_star_etc_rule()
19891 if (_res == NULL && PyErr_Occurred()) { in invalid_star_etc_rule()
19920 _res = RAISE_SYNTAX_ERROR ( "bare * has associated type comment" ); in invalid_star_etc_rule()
19921 if (_res == NULL && PyErr_Occurred()) { in invalid_star_etc_rule()
19932 _res = NULL; in invalid_star_etc_rule()
19935 return _res; in invalid_star_etc_rule()
19950 void * _res = NULL; in invalid_lambda_star_etc_rule() local
19967 _res = RAISE_SYNTAX_ERROR ( "named arguments must follow bare *" ); in invalid_lambda_star_etc_rule()
19968 if (_res == NULL && PyErr_Occurred()) { in invalid_lambda_star_etc_rule()
19979 _res = NULL; in invalid_lambda_star_etc_rule()
19982 return _res; in invalid_lambda_star_etc_rule()
19997 void * _res = NULL; in invalid_double_type_comments_rule() local
20023 _res = RAISE_SYNTAX_ERROR ( "Cannot have two type comments on def" ); in invalid_double_type_comments_rule()
20024 if (_res == NULL && PyErr_Occurred()) { in invalid_double_type_comments_rule()
20035 _res = NULL; in invalid_double_type_comments_rule()
20038 return _res; in invalid_double_type_comments_rule()
20053 void * _res = NULL; in invalid_with_item_rule() local
20075 _res = RAISE_SYNTAX_ERROR_INVALID_TARGET ( STAR_TARGETS , a ); in invalid_with_item_rule()
20076 if (_res == NULL && PyErr_Occurred()) { in invalid_with_item_rule()
20087 _res = NULL; in invalid_with_item_rule()
20090 return _res; in invalid_with_item_rule()
20105 void * _res = NULL; in invalid_for_target_rule() local
20126 _res = RAISE_SYNTAX_ERROR_INVALID_TARGET ( FOR_TARGETS , a ); in invalid_for_target_rule()
20127 if (_res == NULL && PyErr_Occurred()) { in invalid_for_target_rule()
20138 _res = NULL; in invalid_for_target_rule()
20141 return _res; in invalid_for_target_rule()
20156 void * _res = NULL; in invalid_group_rule() local
20176 _res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "cannot use starred expression here" ); in invalid_group_rule()
20177 if (_res == NULL && PyErr_Occurred()) { in invalid_group_rule()
20209_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "cannot use double starred expression here" ); in invalid_group_rule()
20210 if (_res == NULL && PyErr_Occurred()) { in invalid_group_rule()
20221 _res = NULL; in invalid_group_rule()
20224 return _res; in invalid_group_rule()
20239 void * _res = NULL; in invalid_import_from_targets_rule() local
20259_res = RAISE_SYNTAX_ERROR ( "trailing comma not allowed without surrounding parentheses" ); in invalid_import_from_targets_rule()
20260 if (_res == NULL && PyErr_Occurred()) { in invalid_import_from_targets_rule()
20271 _res = NULL; in invalid_import_from_targets_rule()
20274 return _res; in invalid_import_from_targets_rule()
20291 void * _res = NULL; in invalid_with_stmt_rule() local
20315 _res = _PyPegen_dummy_name(p, _opt_var, _keyword, _gather_163_var, _literal); in invalid_with_stmt_rule()
20354_res = _PyPegen_dummy_name(p, _opt_var, _keyword, _literal, _gather_165_var, _opt_var_1, _literal_… in invalid_with_stmt_rule()
20361 _res = NULL; in invalid_with_stmt_rule()
20364 return _res; in invalid_with_stmt_rule()
20381 void * _res = NULL; in invalid_with_stmt_indent_rule() local
20410_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'with' statement on line %d" , … in invalid_with_stmt_indent_rule()
20411 if (_res == NULL && PyErr_Occurred()) { in invalid_with_stmt_indent_rule()
20459_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'with' statement on line %d" , … in invalid_with_stmt_indent_rule()
20460 if (_res == NULL && PyErr_Occurred()) { in invalid_with_stmt_indent_rule()
20471 _res = NULL; in invalid_with_stmt_indent_rule()
20474 return _res; in invalid_with_stmt_indent_rule()
20489 void * _res = NULL; in invalid_try_stmt_rule() local
20511_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'try' statement on line %d" , a… in invalid_try_stmt_rule()
20512 if (_res == NULL && PyErr_Occurred()) { in invalid_try_stmt_rule()
20543 _res = RAISE_SYNTAX_ERROR ( "expected 'except' or 'finally' block" ); in invalid_try_stmt_rule()
20544 if (_res == NULL && PyErr_Occurred()) { in invalid_try_stmt_rule()
20555 _res = NULL; in invalid_try_stmt_rule()
20558 return _res; in invalid_try_stmt_rule()
20576 void * _res = NULL; in invalid_except_stmt_rule() local
20606_res = RAISE_SYNTAX_ERROR_STARTING_FROM ( a , "multiple exception types must be parenthesized" ); in invalid_except_stmt_rule()
20607 if (_res == NULL && PyErr_Occurred()) { in invalid_except_stmt_rule()
20640 _res = RAISE_SYNTAX_ERROR ( "expected ':'" ); in invalid_except_stmt_rule()
20641 if (_res == NULL && PyErr_Occurred()) { in invalid_except_stmt_rule()
20667 _res = RAISE_SYNTAX_ERROR ( "expected ':'" ); in invalid_except_stmt_rule()
20668 if (_res == NULL && PyErr_Occurred()) { in invalid_except_stmt_rule()
20679 _res = NULL; in invalid_except_stmt_rule()
20682 return _res; in invalid_except_stmt_rule()
20697 void * _res = NULL; in invalid_finally_stmt_rule() local
20719_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'finally' statement on line %d"… in invalid_finally_stmt_rule()
20720 if (_res == NULL && PyErr_Occurred()) { in invalid_finally_stmt_rule()
20731 _res = NULL; in invalid_finally_stmt_rule()
20734 return _res; in invalid_finally_stmt_rule()
20751 void * _res = NULL; in invalid_except_stmt_indent_rule() local
20780_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'except' statement on line %d" … in invalid_except_stmt_indent_rule()
20781 if (_res == NULL && PyErr_Occurred()) { in invalid_except_stmt_indent_rule()
20812_res = RAISE_SYNTAX_ERROR ( "expected an indented block after except statement on line %d" , a -> … in invalid_except_stmt_indent_rule()
20813 if (_res == NULL && PyErr_Occurred()) { in invalid_except_stmt_indent_rule()
20824 _res = NULL; in invalid_except_stmt_indent_rule()
20827 return _res; in invalid_except_stmt_indent_rule()
20844 void * _res = NULL; in invalid_match_stmt_rule() local
20863_res = CHECK_VERSION ( void * , 10 , "Pattern matching is" , RAISE_SYNTAX_ERROR ( "expected ':'" )… in invalid_match_stmt_rule()
20864 if (_res == NULL && PyErr_Occurred()) { in invalid_match_stmt_rule()
20898_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'match' statement on line %d" ,… in invalid_match_stmt_rule()
20899 if (_res == NULL && PyErr_Occurred()) { in invalid_match_stmt_rule()
20910 _res = NULL; in invalid_match_stmt_rule()
20913 return _res; in invalid_match_stmt_rule()
20930 void * _res = NULL; in invalid_case_block_rule() local
20953 _res = RAISE_SYNTAX_ERROR ( "expected ':'" ); in invalid_case_block_rule()
20954 if (_res == NULL && PyErr_Occurred()) { in invalid_case_block_rule()
20992_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'case' statement on line %d" , … in invalid_case_block_rule()
20993 if (_res == NULL && PyErr_Occurred()) { in invalid_case_block_rule()
21004 _res = NULL; in invalid_case_block_rule()
21007 return _res; in invalid_case_block_rule()
21022 void * _res = NULL; in invalid_as_pattern_rule() local
21042 _res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "cannot use '_' as a target" ); in invalid_as_pattern_rule()
21043 if (_res == NULL && PyErr_Occurred()) { in invalid_as_pattern_rule()
21074 _res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "invalid pattern target" ); in invalid_as_pattern_rule()
21075 if (_res == NULL && PyErr_Occurred()) { in invalid_as_pattern_rule()
21086 _res = NULL; in invalid_as_pattern_rule()
21089 return _res; in invalid_as_pattern_rule()
21104 void * _res = NULL; in invalid_class_pattern_rule() local
21124_res = RAISE_SYNTAX_ERROR_KNOWN_RANGE ( PyPegen_first_item ( a , pattern_ty ) , PyPegen_last_item … in invalid_class_pattern_rule()
21125 if (_res == NULL && PyErr_Occurred()) { in invalid_class_pattern_rule()
21136 _res = NULL; in invalid_class_pattern_rule()
21139 return _res; in invalid_class_pattern_rule()
21155 asdl_pattern_seq* _res = NULL; in invalid_class_argument_pattern_rule() local
21179 _res = a; in invalid_class_argument_pattern_rule()
21180 if (_res == NULL && PyErr_Occurred()) { in invalid_class_argument_pattern_rule()
21191 _res = NULL; in invalid_class_argument_pattern_rule()
21194 return _res; in invalid_class_argument_pattern_rule()
21211 void * _res = NULL; in invalid_if_stmt_rule() local
21231 _res = RAISE_SYNTAX_ERROR ( "expected ':'" ); in invalid_if_stmt_rule()
21232 if (_res == NULL && PyErr_Occurred()) { in invalid_if_stmt_rule()
21266_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'if' statement on line %d" , a … in invalid_if_stmt_rule()
21267 if (_res == NULL && PyErr_Occurred()) { in invalid_if_stmt_rule()
21278 _res = NULL; in invalid_if_stmt_rule()
21281 return _res; in invalid_if_stmt_rule()
21298 void * _res = NULL; in invalid_elif_stmt_rule() local
21318 _res = RAISE_SYNTAX_ERROR ( "expected ':'" ); in invalid_elif_stmt_rule()
21319 if (_res == NULL && PyErr_Occurred()) { in invalid_elif_stmt_rule()
21353_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'elif' statement on line %d" , … in invalid_elif_stmt_rule()
21354 if (_res == NULL && PyErr_Occurred()) { in invalid_elif_stmt_rule()
21365 _res = NULL; in invalid_elif_stmt_rule()
21368 return _res; in invalid_elif_stmt_rule()
21383 void * _res = NULL; in invalid_else_stmt_rule() local
21405_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'else' statement on line %d" , … in invalid_else_stmt_rule()
21406 if (_res == NULL && PyErr_Occurred()) { in invalid_else_stmt_rule()
21417 _res = NULL; in invalid_else_stmt_rule()
21420 return _res; in invalid_else_stmt_rule()
21437 void * _res = NULL; in invalid_while_stmt_rule() local
21457 _res = RAISE_SYNTAX_ERROR ( "expected ':'" ); in invalid_while_stmt_rule()
21458 if (_res == NULL && PyErr_Occurred()) { in invalid_while_stmt_rule()
21492_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'while' statement on line %d" ,… in invalid_while_stmt_rule()
21493 if (_res == NULL && PyErr_Occurred()) { in invalid_while_stmt_rule()
21504 _res = NULL; in invalid_while_stmt_rule()
21507 return _res; in invalid_while_stmt_rule()
21522 void * _res = NULL; in invalid_for_stmt_rule() local
21557_res = RAISE_INDENTATION_ERROR ( "expected an indented block after 'for' statement on line %d" , a… in invalid_for_stmt_rule()
21558 if (_res == NULL && PyErr_Occurred()) { in invalid_for_stmt_rule()
21569 _res = NULL; in invalid_for_stmt_rule()
21572 return _res; in invalid_for_stmt_rule()
21588 void * _res = NULL; in invalid_def_raw_rule() local
21631_res = RAISE_INDENTATION_ERROR ( "expected an indented block after function definition on line %d"… in invalid_def_raw_rule()
21632 if (_res == NULL && PyErr_Occurred()) { in invalid_def_raw_rule()
21643 _res = NULL; in invalid_def_raw_rule()
21646 return _res; in invalid_def_raw_rule()
21661 void * _res = NULL; in invalid_class_def_raw_rule() local
21690_res = RAISE_INDENTATION_ERROR ( "expected an indented block after class definition on line %d" , … in invalid_class_def_raw_rule()
21691 if (_res == NULL && PyErr_Occurred()) { in invalid_class_def_raw_rule()
21702 _res = NULL; in invalid_class_def_raw_rule()
21705 return _res; in invalid_class_def_raw_rule()
21723 void * _res = NULL; in invalid_double_starred_kvpairs_rule() local
21743 _res = _PyPegen_dummy_name(p, _gather_178_var, _literal, invalid_kvpair_var); in invalid_double_starred_kvpairs_rule()
21771_res = RAISE_SYNTAX_ERROR_STARTING_FROM ( a , "cannot use a starred expression in a dictionary val… in invalid_double_starred_kvpairs_rule()
21772 if (_res == NULL && PyErr_Occurred()) { in invalid_double_starred_kvpairs_rule()
21800_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "expression expected after dictionary key and ':'" … in invalid_double_starred_kvpairs_rule()
21801 if (_res == NULL && PyErr_Occurred()) { in invalid_double_starred_kvpairs_rule()
21812 _res = NULL; in invalid_double_starred_kvpairs_rule()
21815 return _res; in invalid_double_starred_kvpairs_rule()
21830 void * _res = NULL; in invalid_kvpair_rule() local
21846_res = RAISE_ERROR_KNOWN_LOCATION ( p , PyExc_SyntaxError , a -> lineno , a -> end_col_offset - 1 … in invalid_kvpair_rule()
21847 if (_res == NULL && PyErr_Occurred()) { in invalid_kvpair_rule()
21879_res = RAISE_SYNTAX_ERROR_STARTING_FROM ( a , "cannot use a starred expression in a dictionary val… in invalid_kvpair_rule()
21880 if (_res == NULL && PyErr_Occurred()) { in invalid_kvpair_rule()
21906_res = RAISE_SYNTAX_ERROR_KNOWN_LOCATION ( a , "expression expected after dictionary key and ':'" … in invalid_kvpair_rule()
21907 if (_res == NULL && PyErr_Occurred()) { in invalid_kvpair_rule()
21918 _res = NULL; in invalid_kvpair_rule()
21921 return _res; in invalid_kvpair_rule()
21936 void *_res = NULL; in _loop0_1_rule() local
21959 _res = newline_var; in _loop0_1_rule()
21971 _children[_n++] = _res; in _loop0_1_rule()
22005 void *_res = NULL; in _loop0_2_rule() local
22028 _res = newline_var; in _loop0_2_rule()
22040 _children[_n++] = _res; in _loop0_2_rule()
22074 void *_res = NULL; in _loop0_4_rule() local
22100 _res = elem; in _loop0_4_rule()
22101 if (_res == NULL && PyErr_Occurred()) { in _loop0_4_rule()
22118 _children[_n++] = _res; in _loop0_4_rule()
22152 asdl_seq * _res = NULL; in _gather_3_rule() local
22169 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_3_rule()
22176 _res = NULL; in _gather_3_rule()
22179 return _res; in _gather_3_rule()
22194 void *_res = NULL; in _loop0_6_rule() local
22220 _res = elem; in _loop0_6_rule()
22221 if (_res == NULL && PyErr_Occurred()) { in _loop0_6_rule()
22238 _children[_n++] = _res; in _loop0_6_rule()
22272 asdl_seq * _res = NULL; in _gather_5_rule() local
22289 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_5_rule()
22296 _res = NULL; in _gather_5_rule()
22299 return _res; in _gather_5_rule()
22314 void *_res = NULL; in _loop0_8_rule() local
22340 _res = elem; in _loop0_8_rule()
22341 if (_res == NULL && PyErr_Occurred()) { in _loop0_8_rule()
22358 _children[_n++] = _res; in _loop0_8_rule()
22392 asdl_seq * _res = NULL; in _gather_7_rule() local
22409 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_7_rule()
22416 _res = NULL; in _gather_7_rule()
22419 return _res; in _gather_7_rule()
22434 void *_res = NULL; in _loop0_10_rule() local
22460 _res = elem; in _loop0_10_rule()
22461 if (_res == NULL && PyErr_Occurred()) { in _loop0_10_rule()
22478 _children[_n++] = _res; in _loop0_10_rule()
22512 asdl_seq * _res = NULL; in _gather_9_rule() local
22529 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_9_rule()
22536 _res = NULL; in _gather_9_rule()
22539 return _res; in _gather_9_rule()
22554 void *_res = NULL; in _loop1_11_rule() local
22577 _res = statement_var; in _loop1_11_rule()
22589 _children[_n++] = _res; in _loop1_11_rule()
22628 void *_res = NULL; in _loop0_13_rule() local
22654 _res = elem; in _loop0_13_rule()
22655 if (_res == NULL && PyErr_Occurred()) { in _loop0_13_rule()
22672 _children[_n++] = _res; in _loop0_13_rule()
22706 asdl_seq * _res = NULL; in _gather_12_rule() local
22723 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_12_rule()
22730 _res = NULL; in _gather_12_rule()
22733 return _res; in _gather_12_rule()
22748 void * _res = NULL; in _tmp_14_rule() local
22762 _res = _keyword; in _tmp_14_rule()
22781 _res = _keyword; in _tmp_14_rule()
22788 _res = NULL; in _tmp_14_rule()
22791 return _res; in _tmp_14_rule()
22806 void * _res = NULL; in _tmp_15_rule() local
22820 _res = _keyword; in _tmp_15_rule()
22839 _res = _literal; in _tmp_15_rule()
22858 _res = async_var; in _tmp_15_rule()
22865 _res = NULL; in _tmp_15_rule()
22868 return _res; in _tmp_15_rule()
22883 void * _res = NULL; in _tmp_16_rule() local
22897 _res = _keyword; in _tmp_16_rule()
22916 _res = _literal; in _tmp_16_rule()
22923 _res = NULL; in _tmp_16_rule()
22926 return _res; in _tmp_16_rule()
22941 void * _res = NULL; in _tmp_17_rule() local
22955 _res = _keyword; in _tmp_17_rule()
22974 _res = async_var; in _tmp_17_rule()
22981 _res = NULL; in _tmp_17_rule()
22984 return _res; in _tmp_17_rule()
22999 void * _res = NULL; in _tmp_18_rule() local
23013 _res = _keyword; in _tmp_18_rule()
23032 _res = async_var; in _tmp_18_rule()
23039 _res = NULL; in _tmp_18_rule()
23042 return _res; in _tmp_18_rule()
23057 void * _res = NULL; in _tmp_19_rule() local
23074 _res = d; in _tmp_19_rule()
23075 if (_res == NULL && PyErr_Occurred()) { in _tmp_19_rule()
23086 _res = NULL; in _tmp_19_rule()
23089 return _res; in _tmp_19_rule()
23104 void * _res = NULL; in _tmp_20_rule() local
23124 _res = b; in _tmp_20_rule()
23125 if (_res == NULL && PyErr_Occurred()) { in _tmp_20_rule()
23148 _res = single_subscript_attribute_target_var; in _tmp_20_rule()
23155 _res = NULL; in _tmp_20_rule()
23158 return _res; in _tmp_20_rule()
23173 void * _res = NULL; in _tmp_21_rule() local
23190 _res = d; in _tmp_21_rule()
23191 if (_res == NULL && PyErr_Occurred()) { in _tmp_21_rule()
23202 _res = NULL; in _tmp_21_rule()
23205 return _res; in _tmp_21_rule()
23220 void *_res = NULL; in _loop1_22_rule() local
23243 _res = _tmp_181_var; in _loop1_22_rule()
23255 _children[_n++] = _res; in _loop1_22_rule()
23294 void * _res = NULL; in _tmp_23_rule() local
23308 _res = yield_expr_var; in _tmp_23_rule()
23327 _res = star_expressions_var; in _tmp_23_rule()
23334 _res = NULL; in _tmp_23_rule()
23337 return _res; in _tmp_23_rule()
23352 void * _res = NULL; in _tmp_24_rule() local
23366 _res = yield_expr_var; in _tmp_24_rule()
23385 _res = star_expressions_var; in _tmp_24_rule()
23392 _res = NULL; in _tmp_24_rule()
23395 return _res; in _tmp_24_rule()
23410 void *_res = NULL; in _loop0_26_rule() local
23436 _res = elem; in _loop0_26_rule()
23437 if (_res == NULL && PyErr_Occurred()) { in _loop0_26_rule()
23454 _children[_n++] = _res; in _loop0_26_rule()
23488 asdl_seq * _res = NULL; in _gather_25_rule() local
23505 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_25_rule()
23512 _res = NULL; in _gather_25_rule()
23515 return _res; in _gather_25_rule()
23530 void *_res = NULL; in _loop0_28_rule() local
23556 _res = elem; in _loop0_28_rule()
23557 if (_res == NULL && PyErr_Occurred()) { in _loop0_28_rule()
23574 _children[_n++] = _res; in _loop0_28_rule()
23608 asdl_seq * _res = NULL; in _gather_27_rule() local
23625 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_27_rule()
23632 _res = NULL; in _gather_27_rule()
23635 return _res; in _gather_27_rule()
23650 void * _res = NULL; in _tmp_29_rule() local
23667 _res = z; in _tmp_29_rule()
23668 if (_res == NULL && PyErr_Occurred()) { in _tmp_29_rule()
23679 _res = NULL; in _tmp_29_rule()
23682 return _res; in _tmp_29_rule()
23697 void * _res = NULL; in _tmp_30_rule() local
23711 _res = _literal; in _tmp_30_rule()
23730 _res = newline_var; in _tmp_30_rule()
23737 _res = NULL; in _tmp_30_rule()
23740 return _res; in _tmp_30_rule()
23755 void *_res = NULL; in _loop0_31_rule() local
23778 _res = _tmp_182_var; in _loop0_31_rule()
23790 _children[_n++] = _res; in _loop0_31_rule()
23824 void *_res = NULL; in _loop1_32_rule() local
23847 _res = _tmp_183_var; in _loop1_32_rule()
23859 _children[_n++] = _res; in _loop1_32_rule()
23898 void *_res = NULL; in _loop0_34_rule() local
23924 _res = elem; in _loop0_34_rule()
23925 if (_res == NULL && PyErr_Occurred()) { in _loop0_34_rule()
23942 _children[_n++] = _res; in _loop0_34_rule()
23976 asdl_seq * _res = NULL; in _gather_33_rule() local
23993 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_33_rule()
24000 _res = NULL; in _gather_33_rule()
24003 return _res; in _gather_33_rule()
24018 void * _res = NULL; in _tmp_35_rule() local
24035 _res = z; in _tmp_35_rule()
24036 if (_res == NULL && PyErr_Occurred()) { in _tmp_35_rule()
24047 _res = NULL; in _tmp_35_rule()
24050 return _res; in _tmp_35_rule()
24065 void *_res = NULL; in _loop0_37_rule() local
24091 _res = elem; in _loop0_37_rule()
24092 if (_res == NULL && PyErr_Occurred()) { in _loop0_37_rule()
24109 _children[_n++] = _res; in _loop0_37_rule()
24143 asdl_seq * _res = NULL; in _gather_36_rule() local
24160 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_36_rule()
24167 _res = NULL; in _gather_36_rule()
24170 return _res; in _gather_36_rule()
24185 void * _res = NULL; in _tmp_38_rule() local
24202 _res = z; in _tmp_38_rule()
24203 if (_res == NULL && PyErr_Occurred()) { in _tmp_38_rule()
24214 _res = NULL; in _tmp_38_rule()
24217 return _res; in _tmp_38_rule()
24232 void *_res = NULL; in _loop0_40_rule() local
24258 _res = elem; in _loop0_40_rule()
24259 if (_res == NULL && PyErr_Occurred()) { in _loop0_40_rule()
24276 _children[_n++] = _res; in _loop0_40_rule()
24310 asdl_seq * _res = NULL; in _gather_39_rule() local
24327 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_39_rule()
24334 _res = NULL; in _gather_39_rule()
24337 return _res; in _gather_39_rule()
24352 void *_res = NULL; in _loop0_42_rule() local
24378 _res = elem; in _loop0_42_rule()
24379 if (_res == NULL && PyErr_Occurred()) { in _loop0_42_rule()
24396 _children[_n++] = _res; in _loop0_42_rule()
24430 asdl_seq * _res = NULL; in _gather_41_rule() local
24447 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_41_rule()
24454 _res = NULL; in _gather_41_rule()
24457 return _res; in _gather_41_rule()
24472 void *_res = NULL; in _loop0_44_rule() local
24498 _res = elem; in _loop0_44_rule()
24499 if (_res == NULL && PyErr_Occurred()) { in _loop0_44_rule()
24516 _children[_n++] = _res; in _loop0_44_rule()
24550 asdl_seq * _res = NULL; in _gather_43_rule() local
24567 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_43_rule()
24574 _res = NULL; in _gather_43_rule()
24577 return _res; in _gather_43_rule()
24592 void *_res = NULL; in _loop0_46_rule() local
24618 _res = elem; in _loop0_46_rule()
24619 if (_res == NULL && PyErr_Occurred()) { in _loop0_46_rule()
24636 _children[_n++] = _res; in _loop0_46_rule()
24670 asdl_seq * _res = NULL; in _gather_45_rule() local
24687 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_45_rule()
24694 _res = NULL; in _gather_45_rule()
24697 return _res; in _gather_45_rule()
24712 void * _res = NULL; in _tmp_47_rule() local
24726 _res = _literal; in _tmp_47_rule()
24745 _res = _literal; in _tmp_47_rule()
24764 _res = _literal; in _tmp_47_rule()
24771 _res = NULL; in _tmp_47_rule()
24774 return _res; in _tmp_47_rule()
24789 void *_res = NULL; in _loop1_48_rule() local
24812 _res = except_block_var; in _loop1_48_rule()
24824 _children[_n++] = _res; in _loop1_48_rule()
24863 void * _res = NULL; in _tmp_49_rule() local
24880 _res = z; in _tmp_49_rule()
24881 if (_res == NULL && PyErr_Occurred()) { in _tmp_49_rule()
24892 _res = NULL; in _tmp_49_rule()
24895 return _res; in _tmp_49_rule()
24910 void *_res = NULL; in _loop1_50_rule() local
24933 _res = case_block_var; in _loop1_50_rule()
24945 _children[_n++] = _res; in _loop1_50_rule()
24984 void *_res = NULL; in _loop0_52_rule() local
25010 _res = elem; in _loop0_52_rule()
25011 if (_res == NULL && PyErr_Occurred()) { in _loop0_52_rule()
25028 _children[_n++] = _res; in _loop0_52_rule()
25062 asdl_seq * _res = NULL; in _gather_51_rule() local
25079 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_51_rule()
25086 _res = NULL; in _gather_51_rule()
25089 return _res; in _gather_51_rule()
25104 void * _res = NULL; in _tmp_53_rule() local
25118 _res = _literal; in _tmp_53_rule()
25137 _res = _literal; in _tmp_53_rule()
25144 _res = NULL; in _tmp_53_rule()
25147 return _res; in _tmp_53_rule()
25162 void * _res = NULL; in _tmp_54_rule() local
25176 _res = _literal; in _tmp_54_rule()
25195 _res = _literal; in _tmp_54_rule()
25202 _res = NULL; in _tmp_54_rule()
25205 return _res; in _tmp_54_rule()
25220 void * _res = NULL; in _tmp_55_rule() local
25234 _res = _literal; in _tmp_55_rule()
25253 _res = _literal; in _tmp_55_rule()
25272 _res = _literal; in _tmp_55_rule()
25279 _res = NULL; in _tmp_55_rule()
25282 return _res; in _tmp_55_rule()
25297 void * _res = NULL; in _tmp_56_rule() local
25311 _res = _literal; in _tmp_56_rule()
25330 _res = _literal; in _tmp_56_rule()
25349 _res = _literal; in _tmp_56_rule()
25356 _res = NULL; in _tmp_56_rule()
25359 return _res; in _tmp_56_rule()
25374 void *_res = NULL; in _loop0_58_rule() local
25400 _res = elem; in _loop0_58_rule()
25401 if (_res == NULL && PyErr_Occurred()) { in _loop0_58_rule()
25418 _children[_n++] = _res; in _loop0_58_rule()
25452 asdl_seq * _res = NULL; in _gather_57_rule() local
25469 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_57_rule()
25476 _res = NULL; in _gather_57_rule()
25479 return _res; in _gather_57_rule()
25494 void *_res = NULL; in _loop0_60_rule() local
25520 _res = elem; in _loop0_60_rule()
25521 if (_res == NULL && PyErr_Occurred()) { in _loop0_60_rule()
25538 _children[_n++] = _res; in _loop0_60_rule()
25572 asdl_seq * _res = NULL; in _gather_59_rule() local
25589 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_59_rule()
25596 _res = NULL; in _gather_59_rule()
25599 return _res; in _gather_59_rule()
25614 void * _res = NULL; in _tmp_61_rule() local
25628 _res = literal_expr_var; in _tmp_61_rule()
25647 _res = attr_var; in _tmp_61_rule()
25654 _res = NULL; in _tmp_61_rule()
25657 return _res; in _tmp_61_rule()
25672 void *_res = NULL; in _loop0_63_rule() local
25698 _res = elem; in _loop0_63_rule()
25699 if (_res == NULL && PyErr_Occurred()) { in _loop0_63_rule()
25716 _children[_n++] = _res; in _loop0_63_rule()
25750 asdl_seq * _res = NULL; in _gather_62_rule() local
25767 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_62_rule()
25774 _res = NULL; in _gather_62_rule()
25777 return _res; in _gather_62_rule()
25792 void *_res = NULL; in _loop0_65_rule() local
25818 _res = elem; in _loop0_65_rule()
25819 if (_res == NULL && PyErr_Occurred()) { in _loop0_65_rule()
25836 _children[_n++] = _res; in _loop0_65_rule()
25870 asdl_seq * _res = NULL; in _gather_64_rule() local
25887 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_64_rule()
25894 _res = NULL; in _gather_64_rule()
25897 return _res; in _gather_64_rule()
25912 void * _res = NULL; in _tmp_66_rule() local
25929 _res = z; in _tmp_66_rule()
25930 if (_res == NULL && PyErr_Occurred()) { in _tmp_66_rule()
25941 _res = NULL; in _tmp_66_rule()
25944 return _res; in _tmp_66_rule()
25959 void * _res = NULL; in _tmp_67_rule() local
25976 _res = z; in _tmp_67_rule()
25977 if (_res == NULL && PyErr_Occurred()) { in _tmp_67_rule()
25988 _res = NULL; in _tmp_67_rule()
25991 return _res; in _tmp_67_rule()
26006 void * _res = NULL; in _tmp_68_rule() local
26023 _res = z; in _tmp_68_rule()
26024 if (_res == NULL && PyErr_Occurred()) { in _tmp_68_rule()
26035 _res = NULL; in _tmp_68_rule()
26038 return _res; in _tmp_68_rule()
26053 void * _res = NULL; in _tmp_69_rule() local
26070 _res = _PyPegen_dummy_name(p, newline_var, indent_var); in _tmp_69_rule()
26077 _res = NULL; in _tmp_69_rule()
26080 return _res; in _tmp_69_rule()
26095 void *_res = NULL; in _loop0_70_rule() local
26118 _res = param_no_default_var; in _loop0_70_rule()
26130 _children[_n++] = _res; in _loop0_70_rule()
26164 void *_res = NULL; in _loop0_71_rule() local
26187 _res = param_with_default_var; in _loop0_71_rule()
26199 _children[_n++] = _res; in _loop0_71_rule()
26233 void *_res = NULL; in _loop0_72_rule() local
26256 _res = param_with_default_var; in _loop0_72_rule()
26268 _children[_n++] = _res; in _loop0_72_rule()
26302 void *_res = NULL; in _loop1_73_rule() local
26325 _res = param_no_default_var; in _loop1_73_rule()
26337 _children[_n++] = _res; in _loop1_73_rule()
26376 void *_res = NULL; in _loop0_74_rule() local
26399 _res = param_with_default_var; in _loop0_74_rule()
26411 _children[_n++] = _res; in _loop0_74_rule()
26445 void *_res = NULL; in _loop1_75_rule() local
26468 _res = param_with_default_var; in _loop1_75_rule()
26480 _children[_n++] = _res; in _loop1_75_rule()
26519 void *_res = NULL; in _loop1_76_rule() local
26542 _res = param_no_default_var; in _loop1_76_rule()
26554 _children[_n++] = _res; in _loop1_76_rule()
26593 void *_res = NULL; in _loop1_77_rule() local
26616 _res = param_no_default_var; in _loop1_77_rule()
26628 _children[_n++] = _res; in _loop1_77_rule()
26667 void *_res = NULL; in _loop0_78_rule() local
26690 _res = param_no_default_var; in _loop0_78_rule()
26702 _children[_n++] = _res; in _loop0_78_rule()
26736 void *_res = NULL; in _loop1_79_rule() local
26759 _res = param_with_default_var; in _loop1_79_rule()
26771 _children[_n++] = _res; in _loop1_79_rule()
26810 void *_res = NULL; in _loop0_80_rule() local
26833 _res = param_no_default_var; in _loop0_80_rule()
26845 _children[_n++] = _res; in _loop0_80_rule()
26879 void *_res = NULL; in _loop1_81_rule() local
26902 _res = param_with_default_var; in _loop1_81_rule()
26914 _children[_n++] = _res; in _loop1_81_rule()
26953 void *_res = NULL; in _loop0_82_rule() local
26976 _res = param_maybe_default_var; in _loop0_82_rule()
26988 _children[_n++] = _res; in _loop0_82_rule()
27022 void *_res = NULL; in _loop1_83_rule() local
27045 _res = param_maybe_default_var; in _loop1_83_rule()
27057 _children[_n++] = _res; in _loop1_83_rule()
27096 void *_res = NULL; in _loop1_84_rule() local
27119 _res = _tmp_184_var; in _loop1_84_rule()
27131 _children[_n++] = _res; in _loop1_84_rule()
27170 void * _res = NULL; in _tmp_85_rule() local
27190 _res = z; in _tmp_85_rule()
27191 if (_res == NULL && PyErr_Occurred()) { in _tmp_85_rule()
27202 _res = NULL; in _tmp_85_rule()
27205 return _res; in _tmp_85_rule()
27220 void *_res = NULL; in _loop1_86_rule() local
27243 _res = _tmp_185_var; in _loop1_86_rule()
27255 _children[_n++] = _res; in _loop1_86_rule()
27294 void *_res = NULL; in _loop0_88_rule() local
27320 _res = elem; in _loop0_88_rule()
27321 if (_res == NULL && PyErr_Occurred()) { in _loop0_88_rule()
27338 _children[_n++] = _res; in _loop0_88_rule()
27372 asdl_seq * _res = NULL; in _gather_87_rule() local
27389 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_87_rule()
27396 _res = NULL; in _gather_87_rule()
27399 return _res; in _gather_87_rule()
27414 void *_res = NULL; in _loop1_89_rule() local
27437 _res = _tmp_186_var; in _loop1_89_rule()
27449 _children[_n++] = _res; in _loop1_89_rule()
27488 void *_res = NULL; in _loop0_90_rule() local
27511 _res = lambda_param_no_default_var; in _loop0_90_rule()
27523 _children[_n++] = _res; in _loop0_90_rule()
27557 void *_res = NULL; in _loop0_91_rule() local
27580 _res = lambda_param_with_default_var; in _loop0_91_rule()
27592 _children[_n++] = _res; in _loop0_91_rule()
27626 void *_res = NULL; in _loop0_92_rule() local
27649 _res = lambda_param_with_default_var; in _loop0_92_rule()
27661 _children[_n++] = _res; in _loop0_92_rule()
27695 void *_res = NULL; in _loop1_93_rule() local
27718 _res = lambda_param_no_default_var; in _loop1_93_rule()
27730 _children[_n++] = _res; in _loop1_93_rule()
27769 void *_res = NULL; in _loop0_94_rule() local
27792 _res = lambda_param_with_default_var; in _loop0_94_rule()
27804 _children[_n++] = _res; in _loop0_94_rule()
27838 void *_res = NULL; in _loop1_95_rule() local
27861 _res = lambda_param_with_default_var; in _loop1_95_rule()
27873 _children[_n++] = _res; in _loop1_95_rule()
27912 void *_res = NULL; in _loop1_96_rule() local
27935 _res = lambda_param_no_default_var; in _loop1_96_rule()
27947 _children[_n++] = _res; in _loop1_96_rule()
27986 void *_res = NULL; in _loop1_97_rule() local
28009 _res = lambda_param_no_default_var; in _loop1_97_rule()
28021 _children[_n++] = _res; in _loop1_97_rule()
28060 void *_res = NULL; in _loop0_98_rule() local
28083 _res = lambda_param_no_default_var; in _loop0_98_rule()
28095 _children[_n++] = _res; in _loop0_98_rule()
28129 void *_res = NULL; in _loop1_99_rule() local
28152 _res = lambda_param_with_default_var; in _loop1_99_rule()
28164 _children[_n++] = _res; in _loop1_99_rule()
28203 void *_res = NULL; in _loop0_100_rule() local
28226 _res = lambda_param_no_default_var; in _loop0_100_rule()
28238 _children[_n++] = _res; in _loop0_100_rule()
28272 void *_res = NULL; in _loop1_101_rule() local
28295 _res = lambda_param_with_default_var; in _loop1_101_rule()
28307 _children[_n++] = _res; in _loop1_101_rule()
28346 void *_res = NULL; in _loop0_102_rule() local
28369 _res = lambda_param_maybe_default_var; in _loop0_102_rule()
28381 _children[_n++] = _res; in _loop0_102_rule()
28415 void *_res = NULL; in _loop1_103_rule() local
28438 _res = lambda_param_maybe_default_var; in _loop1_103_rule()
28450 _children[_n++] = _res; in _loop1_103_rule()
28489 void *_res = NULL; in _loop1_104_rule() local
28512 _res = _tmp_187_var; in _loop1_104_rule()
28524 _children[_n++] = _res; in _loop1_104_rule()
28563 void *_res = NULL; in _loop1_105_rule() local
28586 _res = _tmp_188_var; in _loop1_105_rule()
28598 _children[_n++] = _res; in _loop1_105_rule()
28637 void *_res = NULL; in _loop1_106_rule() local
28660 _res = compare_op_bitwise_or_pair_var; in _loop1_106_rule()
28672 _children[_n++] = _res; in _loop1_106_rule()
28711 void * _res = NULL; in _tmp_107_rule() local
28725 _res = _PyPegen_check_barry_as_flufl ( p , tok ) ? NULL : tok; in _tmp_107_rule()
28726 if (_res == NULL && PyErr_Occurred()) { in _tmp_107_rule()
28737 _res = NULL; in _tmp_107_rule()
28740 return _res; in _tmp_107_rule()
28755 void *_res = NULL; in _loop0_109_rule() local
28781 _res = elem; in _loop0_109_rule()
28782 if (_res == NULL && PyErr_Occurred()) { in _loop0_109_rule()
28799 _children[_n++] = _res; in _loop0_109_rule()
28833 asdl_seq * _res = NULL; in _gather_108_rule() local
28850 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_108_rule()
28857 _res = NULL; in _gather_108_rule()
28860 return _res; in _gather_108_rule()
28875 void * _res = NULL; in _tmp_110_rule() local
28892 _res = d; in _tmp_110_rule()
28893 if (_res == NULL && PyErr_Occurred()) { in _tmp_110_rule()
28904 _res = NULL; in _tmp_110_rule()
28907 return _res; in _tmp_110_rule()
28922 void * _res = NULL; in _tmp_111_rule() local
28936 _res = tuple_var; in _tmp_111_rule()
28955 _res = group_var; in _tmp_111_rule()
28974 _res = genexp_var; in _tmp_111_rule()
28981 _res = NULL; in _tmp_111_rule()
28984 return _res; in _tmp_111_rule()
28999 void * _res = NULL; in _tmp_112_rule() local
29013 _res = list_var; in _tmp_112_rule()
29032 _res = listcomp_var; in _tmp_112_rule()
29039 _res = NULL; in _tmp_112_rule()
29042 return _res; in _tmp_112_rule()
29057 void * _res = NULL; in _tmp_113_rule() local
29071 _res = dict_var; in _tmp_113_rule()
29090 _res = set_var; in _tmp_113_rule()
29109 _res = dictcomp_var; in _tmp_113_rule()
29128 _res = setcomp_var; in _tmp_113_rule()
29135 _res = NULL; in _tmp_113_rule()
29138 return _res; in _tmp_113_rule()
29153 void *_res = NULL; in _loop1_114_rule() local
29176 _res = string_var; in _loop1_114_rule()
29188 _children[_n++] = _res; in _loop1_114_rule()
29227 void * _res = NULL; in _tmp_115_rule() local
29247 _res = _PyPegen_seq_insert_in_front ( p , y , z ); in _tmp_115_rule()
29248 if (_res == NULL && PyErr_Occurred()) { in _tmp_115_rule()
29259 _res = NULL; in _tmp_115_rule()
29262 return _res; in _tmp_115_rule()
29277 void * _res = NULL; in _tmp_116_rule() local
29291 _res = yield_expr_var; in _tmp_116_rule()
29310 _res = named_expression_var; in _tmp_116_rule()
29317 _res = NULL; in _tmp_116_rule()
29320 return _res; in _tmp_116_rule()
29335 void * _res = NULL; in _tmp_117_rule() local
29349 _res = assignment_expression_var; in _tmp_117_rule()
29370 _res = expression_var; in _tmp_117_rule()
29377 _res = NULL; in _tmp_117_rule()
29380 return _res; in _tmp_117_rule()
29395 void *_res = NULL; in _loop0_119_rule() local
29421 _res = elem; in _loop0_119_rule()
29422 if (_res == NULL && PyErr_Occurred()) { in _loop0_119_rule()
29439 _children[_n++] = _res; in _loop0_119_rule()
29473 asdl_seq * _res = NULL; in _gather_118_rule() local
29490 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_118_rule()
29497 _res = NULL; in _gather_118_rule()
29500 return _res; in _gather_118_rule()
29515 void *_res = NULL; in _loop1_120_rule() local
29538 _res = for_if_clause_var; in _loop1_120_rule()
29550 _children[_n++] = _res; in _loop1_120_rule()
29589 void *_res = NULL; in _loop0_121_rule() local
29612 _res = _tmp_189_var; in _loop0_121_rule()
29624 _children[_n++] = _res; in _loop0_121_rule()
29658 void *_res = NULL; in _loop0_122_rule() local
29681 _res = _tmp_190_var; in _loop0_122_rule()
29693 _children[_n++] = _res; in _loop0_122_rule()
29727 void *_res = NULL; in _loop0_124_rule() local
29753 _res = elem; in _loop0_124_rule()
29754 if (_res == NULL && PyErr_Occurred()) { in _loop0_124_rule()
29771 _children[_n++] = _res; in _loop0_124_rule()
29806 asdl_seq * _res = NULL; in _gather_123_rule() local
29823 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_123_rule()
29830 _res = NULL; in _gather_123_rule()
29833 return _res; in _gather_123_rule()
29848 void * _res = NULL; in _tmp_125_rule() local
29865 _res = k; in _tmp_125_rule()
29866 if (_res == NULL && PyErr_Occurred()) { in _tmp_125_rule()
29877 _res = NULL; in _tmp_125_rule()
29880 return _res; in _tmp_125_rule()
29895 void *_res = NULL; in _loop0_127_rule() local
29921 _res = elem; in _loop0_127_rule()
29922 if (_res == NULL && PyErr_Occurred()) { in _loop0_127_rule()
29939 _children[_n++] = _res; in _loop0_127_rule()
29973 asdl_seq * _res = NULL; in _gather_126_rule() local
29990 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_126_rule()
29997 _res = NULL; in _gather_126_rule()
30000 return _res; in _gather_126_rule()
30015 void *_res = NULL; in _loop0_129_rule() local
30041 _res = elem; in _loop0_129_rule()
30042 if (_res == NULL && PyErr_Occurred()) { in _loop0_129_rule()
30059 _children[_n++] = _res; in _loop0_129_rule()
30093 asdl_seq * _res = NULL; in _gather_128_rule() local
30110 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_128_rule()
30117 _res = NULL; in _gather_128_rule()
30120 return _res; in _gather_128_rule()
30135 void *_res = NULL; in _loop0_131_rule() local
30161 _res = elem; in _loop0_131_rule()
30162 if (_res == NULL && PyErr_Occurred()) { in _loop0_131_rule()
30179 _children[_n++] = _res; in _loop0_131_rule()
30213 asdl_seq * _res = NULL; in _gather_130_rule() local
30230 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_130_rule()
30237 _res = NULL; in _gather_130_rule()
30240 return _res; in _gather_130_rule()
30255 void *_res = NULL; in _loop0_133_rule() local
30281 _res = elem; in _loop0_133_rule()
30282 if (_res == NULL && PyErr_Occurred()) { in _loop0_133_rule()
30299 _children[_n++] = _res; in _loop0_133_rule()
30333 asdl_seq * _res = NULL; in _gather_132_rule() local
30350 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_132_rule()
30357 _res = NULL; in _gather_132_rule()
30360 return _res; in _gather_132_rule()
30375 void *_res = NULL; in _loop0_134_rule() local
30398 _res = _tmp_192_var; in _loop0_134_rule()
30410 _children[_n++] = _res; in _loop0_134_rule()
30444 void *_res = NULL; in _loop0_136_rule() local
30470 _res = elem; in _loop0_136_rule()
30471 if (_res == NULL && PyErr_Occurred()) { in _loop0_136_rule()
30488 _children[_n++] = _res; in _loop0_136_rule()
30522 asdl_seq * _res = NULL; in _gather_135_rule() local
30539 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_135_rule()
30546 _res = NULL; in _gather_135_rule()
30549 return _res; in _gather_135_rule()
30564 void *_res = NULL; in _loop1_137_rule() local
30587 _res = _tmp_193_var; in _loop1_137_rule()
30599 _children[_n++] = _res; in _loop1_137_rule()
30638 void * _res = NULL; in _tmp_138_rule() local
30654 _res = star_target_var; in _tmp_138_rule()
30661 _res = NULL; in _tmp_138_rule()
30664 return _res; in _tmp_138_rule()
30679 void *_res = NULL; in _loop0_140_rule() local
30705 _res = elem; in _loop0_140_rule()
30706 if (_res == NULL && PyErr_Occurred()) { in _loop0_140_rule()
30723 _children[_n++] = _res; in _loop0_140_rule()
30757 asdl_seq * _res = NULL; in _gather_139_rule() local
30774 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_139_rule()
30781 _res = NULL; in _gather_139_rule()
30784 return _res; in _gather_139_rule()
30799 void * _res = NULL; in _tmp_141_rule() local
30813 _res = args_var; in _tmp_141_rule()
30835 _res = _PyPegen_dummy_name(p, expression_var, for_if_clauses_var); in _tmp_141_rule()
30842 _res = NULL; in _tmp_141_rule()
30845 return _res; in _tmp_141_rule()
30860 void * _res = NULL; in _tmp_142_rule() local
30874 _res = _keyword; in _tmp_142_rule()
30893 _res = _keyword; in _tmp_142_rule()
30912 _res = _keyword; in _tmp_142_rule()
30919 _res = NULL; in _tmp_142_rule()
30922 return _res; in _tmp_142_rule()
30937 void * _res = NULL; in _tmp_143_rule() local
30954 _res = _PyPegen_dummy_name(p, name_var, _literal); in _tmp_143_rule()
30961 _res = NULL; in _tmp_143_rule()
30964 return _res; in _tmp_143_rule()
30979 void * _res = NULL; in _tmp_144_rule() local
30996 _res = _PyPegen_dummy_name(p, name_var, string_var); in _tmp_144_rule()
31015 _res = soft_keyword_var; in _tmp_144_rule()
31022 _res = NULL; in _tmp_144_rule()
31025 return _res; in _tmp_144_rule()
31040 void * _res = NULL; in _tmp_145_rule() local
31054 _res = _keyword; in _tmp_145_rule()
31073 _res = _literal; in _tmp_145_rule()
31080 _res = NULL; in _tmp_145_rule()
31083 return _res; in _tmp_145_rule()
31098 void * _res = NULL; in _tmp_146_rule() local
31112 _res = _literal; in _tmp_146_rule()
31131 _res = _literal; in _tmp_146_rule()
31138 _res = NULL; in _tmp_146_rule()
31141 return _res; in _tmp_146_rule()
31156 void * _res = NULL; in _tmp_147_rule() local
31170 _res = list_var; in _tmp_147_rule()
31189 _res = tuple_var; in _tmp_147_rule()
31208 _res = genexp_var; in _tmp_147_rule()
31227 _res = _keyword; in _tmp_147_rule()
31246 _res = _keyword; in _tmp_147_rule()
31265 _res = _keyword; in _tmp_147_rule()
31272 _res = NULL; in _tmp_147_rule()
31275 return _res; in _tmp_147_rule()
31290 void * _res = NULL; in _tmp_148_rule() local
31304 _res = _literal; in _tmp_148_rule()
31323 _res = _literal; in _tmp_148_rule()
31330 _res = NULL; in _tmp_148_rule()
31333 return _res; in _tmp_148_rule()
31348 void *_res = NULL; in _loop0_149_rule() local
31371 _res = star_named_expressions_var; in _loop0_149_rule()
31383 _children[_n++] = _res; in _loop0_149_rule()
31417 void *_res = NULL; in _loop0_150_rule() local
31440 _res = _tmp_194_var; in _loop0_150_rule()
31452 _children[_n++] = _res; in _loop0_150_rule()
31486 void *_res = NULL; in _loop0_151_rule() local
31509 _res = _tmp_195_var; in _loop0_151_rule()
31521 _children[_n++] = _res; in _loop0_151_rule()
31555 void * _res = NULL; in _tmp_152_rule() local
31569 _res = yield_expr_var; in _tmp_152_rule()
31588 _res = star_expressions_var; in _tmp_152_rule()
31595 _res = NULL; in _tmp_152_rule()
31598 return _res; in _tmp_152_rule()
31613 void * _res = NULL; in _tmp_153_rule() local
31627 _res = _literal; in _tmp_153_rule()
31646 _res = _literal; in _tmp_153_rule()
31665 _res = _literal; in _tmp_153_rule()
31672 _res = NULL; in _tmp_153_rule()
31675 return _res; in _tmp_153_rule()
31690 void * _res = NULL; in _tmp_154_rule() local
31704 _res = _literal; in _tmp_154_rule()
31723 _res = _literal; in _tmp_154_rule()
31730 _res = NULL; in _tmp_154_rule()
31733 return _res; in _tmp_154_rule()
31748 void * _res = NULL; in _tmp_155_rule() local
31762 _res = _literal; in _tmp_155_rule()
31781 _res = _literal; in _tmp_155_rule()
31788 _res = NULL; in _tmp_155_rule()
31791 return _res; in _tmp_155_rule()
31806 void *_res = NULL; in _loop0_156_rule() local
31829 _res = param_no_default_var; in _loop0_156_rule()
31841 _children[_n++] = _res; in _loop0_156_rule()
31875 void *_res = NULL; in _loop1_157_rule() local
31898 _res = param_with_default_var; in _loop1_157_rule()
31910 _children[_n++] = _res; in _loop1_157_rule()
31949 void *_res = NULL; in _loop0_158_rule() local
31972 _res = lambda_param_no_default_var; in _loop0_158_rule()
31984 _children[_n++] = _res; in _loop0_158_rule()
32018 void *_res = NULL; in _loop1_159_rule() local
32041 _res = lambda_param_with_default_var; in _loop1_159_rule()
32053 _children[_n++] = _res; in _loop1_159_rule()
32092 void * _res = NULL; in _tmp_160_rule() local
32106 _res = _literal; in _tmp_160_rule()
32128 _res = _PyPegen_dummy_name(p, _literal, _tmp_196_var); in _tmp_160_rule()
32135 _res = NULL; in _tmp_160_rule()
32138 return _res; in _tmp_160_rule()
32153 void * _res = NULL; in _tmp_161_rule() local
32167 _res = _literal; in _tmp_161_rule()
32189 _res = _PyPegen_dummy_name(p, _literal, _tmp_197_var); in _tmp_161_rule()
32196 _res = NULL; in _tmp_161_rule()
32199 return _res; in _tmp_161_rule()
32214 void * _res = NULL; in _tmp_162_rule() local
32228 _res = _literal; in _tmp_162_rule()
32247 _res = _literal; in _tmp_162_rule()
32266 _res = _literal; in _tmp_162_rule()
32273 _res = NULL; in _tmp_162_rule()
32276 return _res; in _tmp_162_rule()
32291 void *_res = NULL; in _loop0_164_rule() local
32317 _res = elem; in _loop0_164_rule()
32318 if (_res == NULL && PyErr_Occurred()) { in _loop0_164_rule()
32335 _children[_n++] = _res; in _loop0_164_rule()
32369 asdl_seq * _res = NULL; in _gather_163_rule() local
32386 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_163_rule()
32393 _res = NULL; in _gather_163_rule()
32396 return _res; in _gather_163_rule()
32411 void *_res = NULL; in _loop0_166_rule() local
32437 _res = elem; in _loop0_166_rule()
32438 if (_res == NULL && PyErr_Occurred()) { in _loop0_166_rule()
32455 _children[_n++] = _res; in _loop0_166_rule()
32489 asdl_seq * _res = NULL; in _gather_165_rule() local
32506 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_165_rule()
32513 _res = NULL; in _gather_165_rule()
32516 return _res; in _gather_165_rule()
32531 void *_res = NULL; in _loop0_168_rule() local
32557 _res = elem; in _loop0_168_rule()
32558 if (_res == NULL && PyErr_Occurred()) { in _loop0_168_rule()
32575 _children[_n++] = _res; in _loop0_168_rule()
32609 asdl_seq * _res = NULL; in _gather_167_rule() local
32626 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_167_rule()
32633 _res = NULL; in _gather_167_rule()
32636 return _res; in _gather_167_rule()
32651 void *_res = NULL; in _loop0_170_rule() local
32677 _res = elem; in _loop0_170_rule()
32678 if (_res == NULL && PyErr_Occurred()) { in _loop0_170_rule()
32695 _children[_n++] = _res; in _loop0_170_rule()
32729 asdl_seq * _res = NULL; in _gather_169_rule() local
32746 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_169_rule()
32753 _res = NULL; in _gather_169_rule()
32756 return _res; in _gather_169_rule()
32771 void * _res = NULL; in _tmp_171_rule() local
32785 _res = _keyword; in _tmp_171_rule()
32804 _res = _keyword; in _tmp_171_rule()
32811 _res = NULL; in _tmp_171_rule()
32814 return _res; in _tmp_171_rule()
32829 void * _res = NULL; in _tmp_172_rule() local
32846 _res = _PyPegen_dummy_name(p, _keyword, name_var); in _tmp_172_rule()
32853 _res = NULL; in _tmp_172_rule()
32856 return _res; in _tmp_172_rule()
32871 void * _res = NULL; in _tmp_173_rule() local
32888 _res = _PyPegen_dummy_name(p, _keyword, name_var); in _tmp_173_rule()
32895 _res = NULL; in _tmp_173_rule()
32898 return _res; in _tmp_173_rule()
32913 void * _res = NULL; in _tmp_174_rule() local
32930 _res = _PyPegen_dummy_name(p, _keyword, name_var); in _tmp_174_rule()
32937 _res = NULL; in _tmp_174_rule()
32940 return _res; in _tmp_174_rule()
32955 void * _res = NULL; in _tmp_175_rule() local
32972 _res = _PyPegen_dummy_name(p, positional_patterns_var, _literal); in _tmp_175_rule()
32979 _res = NULL; in _tmp_175_rule()
32982 return _res; in _tmp_175_rule()
32997 void * _res = NULL; in _tmp_176_rule() local
33014 _res = _PyPegen_dummy_name(p, _literal, expression_var); in _tmp_176_rule()
33021 _res = NULL; in _tmp_176_rule()
33024 return _res; in _tmp_176_rule()
33039 void * _res = NULL; in _tmp_177_rule() local
33060 _res = _PyPegen_dummy_name(p, _literal, _opt_var, _literal_1); in _tmp_177_rule()
33067 _res = NULL; in _tmp_177_rule()
33070 return _res; in _tmp_177_rule()
33085 void *_res = NULL; in _loop0_179_rule() local
33111 _res = elem; in _loop0_179_rule()
33112 if (_res == NULL && PyErr_Occurred()) { in _loop0_179_rule()
33129 _children[_n++] = _res; in _loop0_179_rule()
33163 asdl_seq * _res = NULL; in _gather_178_rule() local
33180 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_178_rule()
33187 _res = NULL; in _gather_178_rule()
33190 return _res; in _gather_178_rule()
33205 void * _res = NULL; in _tmp_180_rule() local
33219 _res = _literal; in _tmp_180_rule()
33238 _res = _literal; in _tmp_180_rule()
33245 _res = NULL; in _tmp_180_rule()
33248 return _res; in _tmp_180_rule()
33263 void * _res = NULL; in _tmp_181_rule() local
33280 _res = z; in _tmp_181_rule()
33281 if (_res == NULL && PyErr_Occurred()) { in _tmp_181_rule()
33292 _res = NULL; in _tmp_181_rule()
33295 return _res; in _tmp_181_rule()
33310 void * _res = NULL; in _tmp_182_rule() local
33324 _res = _literal; in _tmp_182_rule()
33343 _res = _literal; in _tmp_182_rule()
33350 _res = NULL; in _tmp_182_rule()
33353 return _res; in _tmp_182_rule()
33368 void * _res = NULL; in _tmp_183_rule() local
33382 _res = _literal; in _tmp_183_rule()
33401 _res = _literal; in _tmp_183_rule()
33408 _res = NULL; in _tmp_183_rule()
33411 return _res; in _tmp_183_rule()
33426 void * _res = NULL; in _tmp_184_rule() local
33446 _res = f; in _tmp_184_rule()
33447 if (_res == NULL && PyErr_Occurred()) { in _tmp_184_rule()
33458 _res = NULL; in _tmp_184_rule()
33461 return _res; in _tmp_184_rule()
33476 void * _res = NULL; in _tmp_185_rule() local
33493 _res = c; in _tmp_185_rule()
33494 if (_res == NULL && PyErr_Occurred()) { in _tmp_185_rule()
33505 _res = NULL; in _tmp_185_rule()
33508 return _res; in _tmp_185_rule()
33523 void * _res = NULL; in _tmp_186_rule() local
33540 _res = c; in _tmp_186_rule()
33541 if (_res == NULL && PyErr_Occurred()) { in _tmp_186_rule()
33552 _res = NULL; in _tmp_186_rule()
33555 return _res; in _tmp_186_rule()
33570 void * _res = NULL; in _tmp_187_rule() local
33587 _res = c; in _tmp_187_rule()
33588 if (_res == NULL && PyErr_Occurred()) { in _tmp_187_rule()
33599 _res = NULL; in _tmp_187_rule()
33602 return _res; in _tmp_187_rule()
33617 void * _res = NULL; in _tmp_188_rule() local
33634 _res = c; in _tmp_188_rule()
33635 if (_res == NULL && PyErr_Occurred()) { in _tmp_188_rule()
33646 _res = NULL; in _tmp_188_rule()
33649 return _res; in _tmp_188_rule()
33664 void * _res = NULL; in _tmp_189_rule() local
33681 _res = z; in _tmp_189_rule()
33682 if (_res == NULL && PyErr_Occurred()) { in _tmp_189_rule()
33693 _res = NULL; in _tmp_189_rule()
33696 return _res; in _tmp_189_rule()
33711 void * _res = NULL; in _tmp_190_rule() local
33728 _res = z; in _tmp_190_rule()
33729 if (_res == NULL && PyErr_Occurred()) { in _tmp_190_rule()
33740 _res = NULL; in _tmp_190_rule()
33743 return _res; in _tmp_190_rule()
33758 void * _res = NULL; in _tmp_191_rule() local
33772 _res = starred_expression_var; in _tmp_191_rule()
33793 _res = _tmp_202_var; in _tmp_191_rule()
33800 _res = NULL; in _tmp_191_rule()
33803 return _res; in _tmp_191_rule()
33818 void * _res = NULL; in _tmp_192_rule() local
33835 _res = c; in _tmp_192_rule()
33836 if (_res == NULL && PyErr_Occurred()) { in _tmp_192_rule()
33847 _res = NULL; in _tmp_192_rule()
33850 return _res; in _tmp_192_rule()
33865 void * _res = NULL; in _tmp_193_rule() local
33882 _res = c; in _tmp_193_rule()
33883 if (_res == NULL && PyErr_Occurred()) { in _tmp_193_rule()
33894 _res = NULL; in _tmp_193_rule()
33897 return _res; in _tmp_193_rule()
33912 void * _res = NULL; in _tmp_194_rule() local
33929 _res = _PyPegen_dummy_name(p, star_targets_var, _literal); in _tmp_194_rule()
33936 _res = NULL; in _tmp_194_rule()
33939 return _res; in _tmp_194_rule()
33954 void * _res = NULL; in _tmp_195_rule() local
33971 _res = _PyPegen_dummy_name(p, star_targets_var, _literal); in _tmp_195_rule()
33978 _res = NULL; in _tmp_195_rule()
33981 return _res; in _tmp_195_rule()
33996 void * _res = NULL; in _tmp_196_rule() local
34010 _res = _literal; in _tmp_196_rule()
34029 _res = _literal; in _tmp_196_rule()
34036 _res = NULL; in _tmp_196_rule()
34039 return _res; in _tmp_196_rule()
34054 void * _res = NULL; in _tmp_197_rule() local
34068 _res = _literal; in _tmp_197_rule()
34087 _res = _literal; in _tmp_197_rule()
34094 _res = NULL; in _tmp_197_rule()
34097 return _res; in _tmp_197_rule()
34112 void * _res = NULL; in _tmp_198_rule() local
34130 _res = _PyPegen_dummy_name(p, expression_var, _opt_var); in _tmp_198_rule()
34137 _res = NULL; in _tmp_198_rule()
34140 return _res; in _tmp_198_rule()
34155 void * _res = NULL; in _tmp_199_rule() local
34173 _res = _PyPegen_dummy_name(p, expressions_var, _opt_var); in _tmp_199_rule()
34180 _res = NULL; in _tmp_199_rule()
34183 return _res; in _tmp_199_rule()
34198 void * _res = NULL; in _tmp_200_rule() local
34216 _res = _PyPegen_dummy_name(p, expression_var, _opt_var); in _tmp_200_rule()
34223 _res = NULL; in _tmp_200_rule()
34226 return _res; in _tmp_200_rule()
34241 void * _res = NULL; in _tmp_201_rule() local
34259 _res = _PyPegen_dummy_name(p, expressions_var, _opt_var); in _tmp_201_rule()
34266 _res = NULL; in _tmp_201_rule()
34269 return _res; in _tmp_201_rule()
34284 void * _res = NULL; in _tmp_202_rule() local
34298 _res = assignment_expression_var; in _tmp_202_rule()
34319 _res = expression_var; in _tmp_202_rule()
34326 _res = NULL; in _tmp_202_rule()
34329 return _res; in _tmp_202_rule()
34344 void * _res = NULL; in _tmp_203_rule() local
34361 _res = _PyPegen_dummy_name(p, _keyword, star_target_var); in _tmp_203_rule()
34368 _res = NULL; in _tmp_203_rule()
34371 return _res; in _tmp_203_rule()
34386 void * _res = NULL; in _tmp_204_rule() local
34403 _res = _PyPegen_dummy_name(p, _keyword, star_target_var); in _tmp_204_rule()
34410 _res = NULL; in _tmp_204_rule()
34413 return _res; in _tmp_204_rule()
34428 void * _res = NULL; in _tmp_205_rule() local
34445 _res = _PyPegen_dummy_name(p, _keyword, star_target_var); in _tmp_205_rule()
34452 _res = NULL; in _tmp_205_rule()
34455 return _res; in _tmp_205_rule()
34470 void * _res = NULL; in _tmp_206_rule() local
34487 _res = _PyPegen_dummy_name(p, _keyword, star_target_var); in _tmp_206_rule()
34494 _res = NULL; in _tmp_206_rule()
34497 return _res; in _tmp_206_rule()