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] = [
116116 ] ) ,
117117 Child ( name: " ParameterList " ,
118118 kind: " FunctionParameterList " ,
119- collectionElementName: " Parameter " ) ,
119+ collectionElementName: " Parameter " ,
120+ isIndented: true ) ,
120121 Child ( name: " RightParen " ,
121122 kind: " RightParenToken " ,
122123 tokenChoices: [
Original file line number Diff line number Diff line change @@ -328,7 +328,8 @@ public let EXPR_NODES: [Node] = [
328328 ] ) ,
329329 Child ( name: " ElementList " ,
330330 kind: " TupleExprElementList " ,
331- collectionElementName: " Element " ) ,
331+ collectionElementName: " Element " ,
332+ isIndented: true ) ,
332333 Child ( name: " RightParen " ,
333334 kind: " RightParenToken " ,
334335 tokenChoices: [
@@ -813,7 +814,8 @@ public let EXPR_NODES: [Node] = [
813814 ] ) ,
814815 Child ( name: " ArgumentList " ,
815816 kind: " TupleExprElementList " ,
816- collectionElementName: " Argument " ) ,
817+ collectionElementName: " Argument " ,
818+ isIndented: true ) ,
817819 Child ( name: " RightParen " ,
818820 kind: " RightParenToken " ,
819821 isOptional: true ,
Original file line number Diff line number Diff line change @@ -76,10 +76,16 @@ open class BasicFormat: SyntaxRewriter {
7676 return true
7777 case \CodeBlockSyntax . statements:
7878 return true
79+ case \FunctionCallExprSyntax . argumentList:
80+ return true
7981 case \MemberDeclBlockSyntax . members:
8082 return true
83+ case \ParameterClauseSyntax . parameterList:
84+ return true
8185 case \SwitchCaseSyntax . statements:
8286 return true
87+ case \TupleExprSyntax . elementList:
88+ return true
8389 default :
8490 return false
8591 }
You can’t perform that action at this time.
0 commit comments