@@ -72,31 +72,31 @@ public struct BridgingHeader: Codable {
72
72
/// Details specific to Swift modules.
73
73
public struct SwiftModuleDetails : Codable {
74
74
/// The module interface from which this module was built, if any.
75
- public var moduleInterfacePath : String ?
75
+ var moduleInterfacePath : String ?
76
76
77
77
/// The paths of potentially ready-to-use compiled modules for the interface.
78
- public var compiledModuleCandidates : [ String ] ?
78
+ @ _spi ( Testing ) public var compiledModuleCandidates : [ String ] ?
79
79
80
80
/// The path to the already-compiled module that must be used instead of
81
81
/// generating a job to build this module. In standard compilation, the dependency scanner
82
82
/// may discover compiled module candidates to be used instead of re-compiling from interface.
83
83
/// In contrast, this explicitCompiledModulePath is only to be used for precompiled modules
84
84
/// external dependencies in Explicit Module Build mode
85
- public var explicitCompiledModulePath : String ?
85
+ var explicitCompiledModulePath : String ?
86
86
87
87
/// The bridging header, if any.
88
- public var bridgingHeaderPath : String ?
88
+ var bridgingHeaderPath : String ?
89
89
90
90
/// The source files referenced by the bridging header.
91
- public var bridgingSourceFiles : [ String ] ? = [ ]
91
+ var bridgingSourceFiles : [ String ] ? = [ ]
92
92
93
93
/// Options to the compile command
94
- public var commandLine : [ String ] ? = [ ]
94
+ var commandLine : [ String ] ? = [ ]
95
95
96
96
/// To build a PCM to be used by this Swift module, we need to append these
97
97
/// arguments to the generic PCM build arguments reported from the dependency
98
98
/// graph.
99
- public var extraPcmArgs : [ String ] ?
99
+ var extraPcmArgs : [ String ] ?
100
100
}
101
101
102
102
/// Details specific to Swift external modules.
@@ -111,13 +111,13 @@ public struct swiftPlaceholderModuleDetails: Codable {
111
111
/// Details specific to Clang modules.
112
112
public struct ClangModuleDetails : Codable {
113
113
/// The path to the module map used to build this module.
114
- public var moduleMapPath : String
114
+ var moduleMapPath : String
115
115
116
116
/// clang-generated context hash
117
- public var contextHash : String ?
117
+ var contextHash : String ?
118
118
119
119
/// Options to the compile command
120
- public var commandLine : [ String ] ? = [ ]
120
+ var commandLine : [ String ] ? = [ ]
121
121
}
122
122
123
123
public struct ModuleInfo : Codable {
0 commit comments