@@ -431,6 +431,11 @@ py_extracted_version(int module : @py_Module ref,
431431/* <Field> Slice.stop = 3, expr */
432432/* <Field> Slice.step = 4, expr */
433433
434+ /* <Field> SpecialOperation.location = 0, location */
435+ /* <Field> SpecialOperation.parenthesised = 1, bool */
436+ /* <Field> SpecialOperation.name = 2, str */
437+ /* <Field> SpecialOperation.arguments = 3, expr_list */
438+
434439/* <Field> Starred.location = 0, location */
435440/* <Field> Starred.parenthesised = 1, bool */
436441/* <Field> Starred.value = 2, expr */
@@ -718,7 +723,8 @@ case @py_expr.kind of
718723| 34 = @py_Await
719724| 35 = @py_Fstring
720725| 36 = @py_FormattedValue
721- | 37 = @py_AssignExpr;
726+ | 37 = @py_AssignExpr
727+ | 38 = @py_SpecialOperation;
722728
723729case @py_expr_context.kind of
724730 0 = @py_AugLoad
@@ -789,7 +795,7 @@ case @py_unaryop.kind of
789795
790796@py_expr_context_parent = @py_Attribute | @py_List | @py_Name | @py_PlaceHolder | @py_Starred | @py_Subscript | @py_TemplateDottedNotation | @py_Tuple;
791797
792- @py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_Tuple | @py_arguments | @py_comprehension;
798+ @py_expr_list_parent = @py_Assign | @py_BoolExpr | @py_Call | @py_ClassExpr | @py_Compare | @py_Delete | @py_Fstring | @py_Function | @py_List | @py_Print | @py_Set | @py_SpecialOperation | @ py_Tuple | @py_arguments | @py_comprehension;
793799
794800@py_expr_or_stmt = @py_expr | @py_stmt;
795801
@@ -805,7 +811,7 @@ case @py_unaryop.kind of
805811
806812@py_str_list_parent = @py_Global | @py_Nonlocal;
807813
808- @py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list;
814+ @py_str_parent = @py_Attribute | @py_Class | @py_ClassExpr | @py_FormattedValue | @py_Function | @py_FunctionExpr | @py_ImportExpr | @py_ImportMember | @py_Module | @py_SpecialOperation | @ py_Str | @py_StringPart | @py_TemplateDottedNotation | @py_keyword | @py_str_list;
809815
810816@py_variable_parent = @py_Name | @py_PlaceHolder;
811817
0 commit comments