File tree 3 files changed +1
-15
lines changed
3 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ package.dependencies += [
44
44
for target in package . targets {
45
45
target. swiftSettings = target. swiftSettings ?? [ ]
46
46
target. swiftSettings? += [
47
- . enableExperimentalFeature( " AccessLevelOnImport " ) ,
48
47
. enableUpcomingFeature( " BareSlashRegexLiterals " ) ,
49
48
. enableUpcomingFeature( " ConciseMagicFile " ) ,
50
49
. enableUpcomingFeature( " DeprecateApplicationMain " ) ,
@@ -55,6 +54,5 @@ for target in package.targets {
55
54
. enableUpcomingFeature( " ImportObjcForwardDeclarations " ) ,
56
55
. enableUpcomingFeature( " IsolatedDefaultValues " ) ,
57
56
. enableExperimentalFeature( " StrictConcurrency=complete " ) ,
58
- . enableExperimentalFeature( " TrailingComma " ) ,
59
57
]
60
58
}
Original file line number Diff line number Diff line change @@ -48,14 +48,4 @@ for target in package.targets {
48
48
. enableUpcomingFeature( " ExistentialAny " ) ,
49
49
. enableUpcomingFeature( " InternalImportsByDefault " ) ,
50
50
]
51
- #if compiler(>=6.1)
52
- target. swiftSettings? += [
53
- . enableUpcomingFeature( " MemberImportVisibility " ) ,
54
- ]
55
- #else
56
- target. swiftSettings? += [
57
- . enableExperimentalFeature( " MemberImportVisibility " ) ,
58
- . enableExperimentalFeature( " TrailingComma " ) ,
59
- ]
60
- #endif
61
51
}
Original file line number Diff line number Diff line change 1
1
import MacroTesting
2
2
import OnceMacro
3
- import SnapshotTesting
4
- import SwiftSyntax
5
3
import Testing
6
4
7
5
@Suite (
8
6
. macros(
9
7
indentationWidth: . tab,
10
8
record: . never,
11
- macros: [ " once " : OnceMacro . self] ,
9
+ macros: [ " once " : OnceMacro . self]
12
10
)
13
11
)
14
12
struct OnceMacroTests {
You can’t perform that action at this time.
0 commit comments