File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
CodeGeneration/Sources/SyntaxSupport/gyb_generated
Sources/SwiftBasicFormat/generated Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,8 @@ public let DECL_NODES: [Node] = [
116
116
] ) ,
117
117
Child ( name: " ParameterList " ,
118
118
kind: " FunctionParameterList " ,
119
- collectionElementName: " Parameter " ) ,
119
+ collectionElementName: " Parameter " ,
120
+ isIndented: true ) ,
120
121
Child ( name: " RightParen " ,
121
122
kind: " RightParenToken " ,
122
123
tokenChoices: [
Original file line number Diff line number Diff line change @@ -328,7 +328,8 @@ public let EXPR_NODES: [Node] = [
328
328
] ) ,
329
329
Child ( name: " ElementList " ,
330
330
kind: " TupleExprElementList " ,
331
- collectionElementName: " Element " ) ,
331
+ collectionElementName: " Element " ,
332
+ isIndented: true ) ,
332
333
Child ( name: " RightParen " ,
333
334
kind: " RightParenToken " ,
334
335
tokenChoices: [
@@ -813,7 +814,8 @@ public let EXPR_NODES: [Node] = [
813
814
] ) ,
814
815
Child ( name: " ArgumentList " ,
815
816
kind: " TupleExprElementList " ,
816
- collectionElementName: " Argument " ) ,
817
+ collectionElementName: " Argument " ,
818
+ isIndented: true ) ,
817
819
Child ( name: " RightParen " ,
818
820
kind: " RightParenToken " ,
819
821
isOptional: true ,
Original file line number Diff line number Diff line change @@ -76,10 +76,16 @@ open class BasicFormat: SyntaxRewriter {
76
76
return true
77
77
case \CodeBlockSyntax . statements:
78
78
return true
79
+ case \FunctionCallExprSyntax . argumentList:
80
+ return true
79
81
case \MemberDeclBlockSyntax . members:
80
82
return true
83
+ case \ParameterClauseSyntax . parameterList:
84
+ return true
81
85
case \SwitchCaseSyntax . statements:
82
86
return true
87
+ case \TupleExprSyntax . elementList:
88
+ return true
83
89
default :
84
90
return false
85
91
}
You can’t perform that action at this time.
0 commit comments