File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -643,6 +643,12 @@ class FloatLiteralExpr(NumberLiteralExpr):
643
643
class IntegerLiteralExpr (NumberLiteralExpr ):
644
644
string_value : string
645
645
646
+ class PackExpr (Expr ):
647
+ pass
648
+
649
+ class ReifyPackExpr (ImplicitConversionExpr ):
650
+ pass
651
+
646
652
class AnyPattern (Pattern ):
647
653
pass
648
654
@@ -685,7 +691,7 @@ class CaseLabelItem(AstNode):
685
691
guard : optional [Expr ] | child
686
692
687
693
@group ("stmt" )
688
- class ConditionElement (Locatable ):
694
+ class ConditionElement (AstNode ):
689
695
boolean : optional [Expr ] | child
690
696
pattern : optional [Pattern ] | child
691
697
initializer : optional [Expr ] | child
@@ -941,10 +947,6 @@ class DictionaryType(SyntaxSugarType):
941
947
key_type : Type
942
948
value_type : Type
943
949
944
- class NestedArchetypeType (ArchetypeType ):
945
- parent : ArchetypeType
946
- associated_type_declaration : AssociatedTypeDecl
947
-
948
950
class NominalType (NominalOrBoundGenericNominalType ):
949
951
pass
950
952
@@ -992,3 +994,12 @@ class StructType(NominalType):
992
994
993
995
class VariadicSequenceType (UnarySyntaxSugarType ):
994
996
pass
997
+
998
+ class PackType (Type ):
999
+ pass
1000
+
1001
+ class PackExpansionType (Type ):
1002
+ pass
1003
+
1004
+ class ParameterizedProtocolType (Type ):
1005
+ pass
You can’t perform that action at this time.
0 commit comments