@@ -210,19 +210,7 @@ public struct __Expression: Sendable {
210
210
/// - Returns: A string describing this instance.
211
211
@_spi ( ForToolsIntegrationOnly)
212
212
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 )
226
214
}
227
215
228
216
/// Get an expanded description of this instance that contains the source
@@ -233,9 +221,9 @@ public struct __Expression: Sendable {
233
221
///
234
222
/// - Returns: A string describing this instance.
235
223
///
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 {
239
227
var result = sourceCode
240
228
241
229
if verbose, let qualifiedName = runtimeValue? . typeInfo. fullyQualifiedName {
0 commit comments