File tree 4 files changed +12
-2
lines changed
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,16 @@ import struct Basics.AbsolutePath
16
16
import struct LLBuildManifest. TestDiscoveryTool
17
17
import struct LLBuildManifest. TestEntryPointTool
18
18
import struct PackageGraph. ModulesGraph
19
+
20
+ @_spi ( SwiftPMInternal)
19
21
import struct PackageGraph. ResolvedPackage
22
+
23
+ @_spi ( SwiftPMInternal)
20
24
import struct PackageGraph. ResolvedProduct
25
+
26
+ @_spi ( SwiftPMInternal)
21
27
import struct PackageGraph. ResolvedModule
28
+
22
29
import struct PackageModel. Sources
23
30
import class PackageModel. SwiftModule
24
31
import class PackageModel. Module
Original file line number Diff line number Diff line change @@ -165,7 +165,8 @@ public struct ResolvedModule {
165
165
/// The list of platforms that are supported by this module.
166
166
public let supportedPlatforms : [ SupportedPlatform ]
167
167
168
- private let platformVersionProvider : PlatformVersionProvider
168
+ @_spi ( SwiftPMInternal)
169
+ public let platformVersionProvider : PlatformVersionProvider
169
170
170
171
/// Triple for which this resolved module should be compiled for.
171
172
public package ( set) var buildTriple : BuildTriple {
Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ public struct ResolvedPackage {
54
54
/// If the given package's source is a registry release, this provides additional metadata and signature information.
55
55
public let registryMetadata : RegistryReleaseMetadata ?
56
56
57
- private let platformVersionProvider : PlatformVersionProvider
57
+ @_spi ( SwiftPMInternal)
58
+ public let platformVersionProvider : PlatformVersionProvider
58
59
59
60
public init (
60
61
underlying: Package ,
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ public struct ResolvedProduct {
47
47
/// The list of platforms that are supported by this product.
48
48
public let supportedPlatforms : [ SupportedPlatform ]
49
49
50
+ @_spi ( SwiftPMInternal)
50
51
public let platformVersionProvider : PlatformVersionProvider
51
52
52
53
/// Triple for which this resolved product should be compiled for.
You can’t perform that action at this time.
0 commit comments