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 2d61e3d commit 180a11fCopy full SHA for 180a11f
stdlib/public/core/DebuggerSupport.swift
@@ -148,6 +148,8 @@ public enum _DebuggerSupport {
148
return count == 1 ? "1 element" : "\(count) elements"
149
case .`struct`?, .`enum`?, nil:
150
switch value {
151
+ case let x as String:
152
+ return x.description
153
case let x as CustomDebugStringConvertible:
154
return x.debugDescription
155
case let x as CustomStringConvertible:
0 commit comments