@@ -210,19 +210,7 @@ public struct __Expression: Sendable {
210210 /// - Returns: A string describing this instance.
211211 @_spi ( ForToolsIntegrationOnly)
212212 public func expandedDescription( ) -> String {
213- _expandedDescription ( verbose: false )
214- }
215-
216- /// Get an expanded description of this instance that contains the source
217- /// code and runtime value (or values) it represents.
218- ///
219- /// - Returns: A string describing this instance.
220- ///
221- /// This function produces a more detailed description than
222- /// ``expandedDescription()``, similar to how `String(reflecting:)` produces
223- /// a more detailed description than `String(describing:)`.
224- func expandedDebugDescription( ) -> String {
225- _expandedDescription ( verbose: true )
213+ expandedDescription ( verbose: false )
226214 }
227215
228216 /// Get an expanded description of this instance that contains the source
@@ -233,9 +221,9 @@ public struct __Expression: Sendable {
233221 ///
234222 /// - Returns: A string describing this instance.
235223 ///
236- /// This function provides the implementation of ``expandedDescription()`` and
237- /// ``expandedDebugDescription() ``.
238- private func _expandedDescription ( verbose: Bool ) -> String {
224+ /// This function provides the implementation of ``expandedDescription()``
225+ /// with additional options used by ``Event/HumanReadableOutputRecorder ``.
226+ func expandedDescription ( verbose: Bool ) -> String {
239227 var result = sourceCode
240228
241229 if verbose, let qualifiedName = runtimeValue? . typeInfo. fullyQualifiedName {
0 commit comments