You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description:"Declares the name of this enum. If the name matches a reserved keyword use backticks to escape it."
670
670
),
671
671
Child(
672
672
name:"GenericParameters",
673
673
kind:.node(kind:"GenericParameterClause"),
674
674
nameForDiagnostics:"generic parameter clause",
675
-
description:"The generic parameters, if any, for this enum.",
675
+
description:"The generic parameters, if any, for this enum declaration.",
676
676
isOptional:true
677
677
),
678
678
Child(
679
679
name:"InheritanceClause",
680
680
kind:.node(kind:"TypeInheritanceClause"),
681
681
nameForDiagnostics:"inheritance clause",
682
-
description:"The inheritance clause describing conformances or raw values for this enum.",
682
+
description:"The inheritance clause describing conformances or raw values for this enum declaration.",
683
683
isOptional:true
684
684
),
685
685
Child(
686
686
name:"GenericWhereClause",
687
687
kind:.node(kind:"GenericWhereClause"),
688
688
nameForDiagnostics:"generic where clause",
689
-
description:"The `where` clause that applies to the generic parameters of this enum.",
689
+
description:"The `where` clause that applies to the generic parameters of this enum declaration.",
690
690
isOptional:true
691
691
),
692
692
Child(
693
693
name:"MemberBlock",
694
694
kind:.node(kind:"MemberDeclBlock"),
695
-
description:"The cases and other members of this enum."
695
+
description:"The cases and other members associated with this enum declaration. Because enum extension declarations may declare additional members the contents of this member block isn't guaranteed to be a complete list of members for this type."
@@ -1944,7 +1944,7 @@ public struct EnumDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {
1944
1944
}
1945
1945
}
1946
1946
1947
-
/// The cases and other members of this enum.
1947
+
/// The cases and other members associated with this enum declaration. Because enum extension declarations may declare additional members the contents of this member block isn't guaranteed to be a complete list of members for this type.
0 commit comments