File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Sources/SwiftSyntaxBuilder Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ extension DeclBuildable {
35
35
// MARK: - Function Builder
36
36
37
37
@_functionBuilder
38
- public struct DeclListBuilder {
39
- public static func buildBlock( _ builders: DeclListBuildable ... ) -> DeclListBuildable {
38
+ struct DeclListBuilder {
39
+ static func buildBlock( _ builders: DeclListBuildable ... ) -> DeclListBuildable {
40
40
DeclList ( builders: builders)
41
41
}
42
42
}
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ extension SyntaxBuildable {
31
31
// MARK: - Function Builder
32
32
33
33
@_functionBuilder
34
- public struct SyntaxListBuilder {
35
- public static func buildBlock( _ builders: SyntaxListBuildable ... ) -> SyntaxListBuildable {
34
+ struct SyntaxListBuilder {
35
+ static func buildBlock( _ builders: SyntaxListBuildable ... ) -> SyntaxListBuildable {
36
36
SyntaxList ( builders: builders)
37
37
}
38
38
}
You can’t perform that action at this time.
0 commit comments