File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/SwiftDriver/Explicit Module Builds Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public struct SwiftModuleDetails: Codable {
100
100
}
101
101
102
102
/// Details specific to Swift external modules.
103
- public struct swiftPlaceholderModuleDetails : Codable {
103
+ public struct SwiftPlaceholderModuleDetails : Codable {
104
104
/// The path to the .swiftModuleDoc file.
105
105
var moduleDocPath : String ?
106
106
@@ -141,7 +141,7 @@ public struct ModuleInfo: Codable {
141
141
142
142
/// Swift external modules carry additional details that specify their
143
143
/// module doc path and source info paths.
144
- case swiftPlaceholder( swiftPlaceholderModuleDetails )
144
+ case swiftPlaceholder( SwiftPlaceholderModuleDetails )
145
145
146
146
/// Clang modules are built from a module map file.
147
147
case clang( ClangModuleDetails )
@@ -162,7 +162,7 @@ extension ModuleInfo.Details: Codable {
162
162
self = . swift( details)
163
163
} catch {
164
164
do {
165
- let details = try container. decode ( swiftPlaceholderModuleDetails . self, forKey: . swiftPlaceholder)
165
+ let details = try container. decode ( SwiftPlaceholderModuleDetails . self, forKey: . swiftPlaceholder)
166
166
self = . swiftPlaceholder( details)
167
167
} catch {
168
168
let details = try container. decode ( ClangModuleDetails . self, forKey: . clang)
You can’t perform that action at this time.
0 commit comments