@@ -54,7 +54,7 @@ public protocol LegacyTracer: Instrument {
5454 function: String ,
5555 file fileID: String ,
5656 line: UInt
57- ) -> any Span
57+ ) -> any Tracing . Span
5858
5959 /// Export all ended spans to the configured backend that have not yet been exported.
6060 ///
@@ -108,7 +108,7 @@ extension LegacyTracer {
108108 function: String = #function,
109109 file fileID: String = #fileID,
110110 line: UInt = #line
111- ) -> any Span {
111+ ) -> any Tracing . Span {
112112 self . startAnySpan (
113113 operationName,
114114 baggage: baggage ( ) ,
@@ -155,7 +155,7 @@ extension LegacyTracer {
155155 function: String = #function,
156156 file fileID: String = #fileID,
157157 line: UInt = #line
158- ) -> any Span {
158+ ) -> any Tracing . Span {
159159 self . startAnySpan (
160160 operationName,
161161 baggage: baggage ( ) ,
@@ -200,7 +200,7 @@ extension LegacyTracer {
200200 function: String = #function,
201201 file fileID: String = #fileID,
202202 line: UInt = #line,
203- _ operation: ( any Span ) throws -> T
203+ _ operation: ( any Tracing . Span ) throws -> T
204204 ) rethrows -> T {
205205 let span = self . startAnySpan (
206206 operationName,
@@ -253,7 +253,7 @@ extension LegacyTracer {
253253 function: String = #function,
254254 file fileID: String = #fileID,
255255 line: UInt = #line,
256- _ operation: ( any Span ) throws -> T
256+ _ operation: ( any Tracing . Span ) throws -> T
257257 ) rethrows -> T {
258258 try self . withAnySpan (
259259 operationName,
@@ -301,7 +301,7 @@ extension LegacyTracer {
301301 function: String = #function,
302302 file fileID: String = #fileID,
303303 line: UInt = #line,
304- _ operation: ( any Span ) async throws -> T
304+ _ operation: ( any Tracing . Span ) async throws -> T
305305 ) async rethrows -> T {
306306 let span = self . startAnySpan (
307307 operationName,
@@ -354,7 +354,7 @@ extension LegacyTracer {
354354 function: String = #function,
355355 file fileID: String = #fileID,
356356 line: UInt = #line,
357- _ operation: ( any Span ) async throws -> T
357+ _ operation: ( any Tracing . Span ) async throws -> T
358358 ) async rethrows -> T {
359359 let span = self . startAnySpan (
360360 operationName,
@@ -469,7 +469,7 @@ extension Tracer {
469469 function: String = #function,
470470 file fileID: String = #fileID,
471471 line: UInt = #line,
472- _ operation: ( any Span ) throws -> T
472+ _ operation: ( any Tracing . Span ) throws -> T
473473 ) rethrows -> T {
474474 try self . withSpan (
475475 operationName,
@@ -524,7 +524,7 @@ extension Tracer {
524524 function: String = #function,
525525 file fileID: String = #fileID,
526526 line: UInt = #line,
527- @_inheritActorContext @_implicitSelfCapture _ operation: ( any Span ) async throws -> T
527+ @_inheritActorContext @_implicitSelfCapture _ operation: ( any Tracing . Span ) async throws -> T
528528 ) async rethrows -> T {
529529 try await self . withSpan (
530530 operationName,
0 commit comments