We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c1ae1 commit b76a01fCopy full SHA for b76a01f
products/llbuildSwift/BuildSystemBindings.swift
@@ -131,6 +131,8 @@ extension CommandStatusKind: CustomStringConvertible {
131
return "isUpToDate"
132
case .isComplete:
133
return "isComplete"
134
+ @unknown default:
135
+ return "unknown"
136
}
137
138
@@ -158,6 +160,8 @@ extension BuildKeyKind: CustomStringConvertible {
158
160
return "filteredDirectoryContents"
159
161
case .stat:
162
return "stat"
163
164
+ return "unknown-\(rawValue)"
165
166
167
@@ -171,6 +175,8 @@ extension DiagnosticKind: CustomStringConvertible {
171
175
return "warning"
172
176
case .error:
173
177
return "error"
178
179
174
180
181
182
0 commit comments