@@ -1492,6 +1492,10 @@ extension DeclNameArgumentListSyntax: BidirectionalCollection {
14921492/// `ExprSyntax` nodes. ExprListSyntax behaves
14931493/// as a regular Swift collection, and has accessors that return new
14941494/// 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+ ///
14951499public struct ExprListSyntax : SyntaxCollection , SyntaxHashable {
14961500 public let _syntaxNode : Syntax
14971501
@@ -4432,6 +4436,7 @@ extension PatternBindingListSyntax: BidirectionalCollection {
44324436/// `EnumCaseElementSyntax` nodes. EnumCaseElementListSyntax behaves
44334437/// as a regular Swift collection, and has accessors that return new
44344438/// versions of the collection with different children.
4439+ /// A collection of 0 or more `EnumCaseElement`s.
44354440public struct EnumCaseElementListSyntax : SyntaxCollection , SyntaxHashable {
44364441 public let _syntaxNode : Syntax
44374442
@@ -6147,6 +6152,9 @@ extension AttributeListSyntax: BidirectionalCollection {
61476152/// `Syntax` nodes. SpecializeAttributeSpecListSyntax behaves
61486153/// as a regular Swift collection, and has accessors that return new
61496154/// versions of the collection with different children.
6155+ ///
6156+ /// A collection of arguments for the `@_specialize` attribute
6157+ ///
61506158public struct SpecializeAttributeSpecListSyntax : SyntaxCollection , SyntaxHashable {
61516159 public let _syntaxNode : Syntax
61526160
0 commit comments