@@ -1492,6 +1492,10 @@ extension DeclNameArgumentListSyntax: BidirectionalCollection {
1492
1492
/// `ExprSyntax` nodes. ExprListSyntax behaves
1493
1493
/// as a regular Swift collection, and has accessors that return new
1494
1494
/// versions of the collection with different children.
1495
+ ///
1496
+ /// A list of expressions connected by operators. This list is contained
1497
+ /// by a `SequenceExprSyntax`.
1498
+ ///
1495
1499
public struct ExprListSyntax : SyntaxCollection , SyntaxHashable {
1496
1500
public let _syntaxNode : Syntax
1497
1501
@@ -4432,6 +4436,7 @@ extension PatternBindingListSyntax: BidirectionalCollection {
4432
4436
/// `EnumCaseElementSyntax` nodes. EnumCaseElementListSyntax behaves
4433
4437
/// as a regular Swift collection, and has accessors that return new
4434
4438
/// versions of the collection with different children.
4439
+ /// A collection of 0 or more `EnumCaseElement`s.
4435
4440
public struct EnumCaseElementListSyntax : SyntaxCollection , SyntaxHashable {
4436
4441
public let _syntaxNode : Syntax
4437
4442
@@ -6147,6 +6152,9 @@ extension AttributeListSyntax: BidirectionalCollection {
6147
6152
/// `Syntax` nodes. SpecializeAttributeSpecListSyntax behaves
6148
6153
/// as a regular Swift collection, and has accessors that return new
6149
6154
/// versions of the collection with different children.
6155
+ ///
6156
+ /// A collection of arguments for the `@_specialize` attribute
6157
+ ///
6150
6158
public struct SpecializeAttributeSpecListSyntax : SyntaxCollection , SyntaxHashable {
6151
6159
public let _syntaxNode : Syntax
6152
6160
0 commit comments