@@ -749,7 +749,7 @@ public let EXPR_NODES: [Node] = [
749749 ) ,
750750 Child (
751751 name: " Expressions " ,
752- kind: . collection( kind: . tupleExprElementList , collectionElementName: " Expression " )
752+ kind: . collection( kind: . labeledExprList , collectionElementName: " Expression " )
753753 ) ,
754754 Child (
755755 name: " RightParen " ,
@@ -812,7 +812,7 @@ public let EXPR_NODES: [Node] = [
812812 Child (
813813 name: " Arguments " ,
814814 deprecatedName: " ArgumentList " ,
815- kind: . collection( kind: . tupleExprElementList , collectionElementName: " Argument " ) ,
815+ kind: . collection( kind: . labeledExprList , collectionElementName: " Argument " ) ,
816816 nameForDiagnostics: " arguments "
817817 ) ,
818818 Child (
@@ -1128,7 +1128,7 @@ public let EXPR_NODES: [Node] = [
11281128 Child (
11291129 name: " Arguments " ,
11301130 deprecatedName: " ArgumentList " ,
1131- kind: . collection( kind: . tupleExprElementList , collectionElementName: " Argument " ) ,
1131+ kind: . collection( kind: . labeledExprList , collectionElementName: " Argument " ) ,
11321132 nameForDiagnostics: " arguments "
11331133 ) ,
11341134 Child (
@@ -1173,7 +1173,7 @@ public let EXPR_NODES: [Node] = [
11731173 Child (
11741174 name: " Arguments " ,
11751175 deprecatedName: " ArgumentList " ,
1176- kind: . collection( kind: . tupleExprElementList , collectionElementName: " Argument " )
1176+ kind: . collection( kind: . labeledExprList , collectionElementName: " Argument " )
11771177 ) ,
11781178 Child (
11791179 name: " RightParen " ,
@@ -1549,7 +1549,7 @@ public let EXPR_NODES: [Node] = [
15491549 Child (
15501550 name: " Arguments " ,
15511551 deprecatedName: " ArgumentList " ,
1552- kind: . collection( kind: . tupleExprElementList , collectionElementName: " Argument " ) ,
1552+ kind: . collection( kind: . labeledExprList , collectionElementName: " Argument " ) ,
15531553 nameForDiagnostics: " arguments "
15541554 ) ,
15551555 Child (
@@ -1770,15 +1770,15 @@ public let EXPR_NODES: [Node] = [
17701770 ) ,
17711771
17721772 Node (
1773- kind: . tupleExprElementList ,
1773+ kind: . labeledExprList ,
17741774 base: . syntaxCollection,
17751775 nameForDiagnostics: nil ,
1776- elementChoices: [ . tupleExprElement ]
1776+ elementChoices: [ . labeledExpr ]
17771777 ) ,
17781778
17791779 // An element inside a tuple element list
17801780 Node (
1781- kind: . tupleExprElement ,
1781+ kind: . labeledExpr ,
17821782 base: . syntax,
17831783 nameForDiagnostics: nil ,
17841784 traits: [
@@ -1824,7 +1824,7 @@ public let EXPR_NODES: [Node] = [
18241824 Child (
18251825 name: " Elements " ,
18261826 deprecatedName: " ElementList " ,
1827- kind: . collection( kind: . tupleExprElementList , collectionElementName: " Element " )
1827+ kind: . collection( kind: . labeledExprList , collectionElementName: " Element " )
18281828 ) ,
18291829 Child (
18301830 name: " RightParen " ,
0 commit comments