File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/SwiftSyntaxBuilderGeneration/Templates Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ let buildableBaseProtocolsFile = SourceFile {
30
30
let syntaxType = SyntaxBuildableType ( syntaxKind: " Syntax " )
31
31
let isSyntax = type == syntaxType
32
32
// Types that the `*Buildable` conforms to
33
- var buildableConformances : [ String ] = [ type. expressibleAs, type. listBuildable] + ( isSyntax ? [ ] : [ syntaxType. buildable] )
34
- var listConformances : [ String ] = isSyntax ? [ ] : [ syntaxType. listBuildable]
33
+ let buildableConformances : [ String ] = [ type. expressibleAs, type. listBuildable] + ( isSyntax ? [ ] : [ syntaxType. buildable] )
34
+ let listConformances : [ String ] = isSyntax ? [ ] : [ syntaxType. listBuildable]
35
35
36
36
ProtocolDecl (
37
37
modifiers: [ TokenSyntax . public] ,
You can’t perform that action at this time.
0 commit comments