| 5799 | return updateService(CurrentStackFrame, (parent) => ({ |
| 5800 | name, |
| 5801 | stack, |
| 5802 | parent |
| 5803 | })) |
| 5804 | } |
| 5805 | |
| 5806 | /** @internal */ |
| 5807 | export const spanAnnotations: Effect.Effect<Readonly<Record<string, unknown>>> = TracerSpanAnnotations |
| 5808 | |
| 5809 | /** @internal */ |
| 5810 | export const spanLinks: Effect.Effect<ReadonlyArray<Tracer.SpanLink>> = TracerSpanLinks |
| 5811 | |
| 5812 | /** @internal */ |
| 5813 | export const linkSpans: { |
| 5814 | ( |
| 5815 | span: Tracer.AnySpan | ReadonlyArray<Tracer.AnySpan>, |
| 5816 | attributes?: Record<string, unknown> |
| 5817 | ): <A, E, R>(self: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R> |
| 5818 | <A, E, R>( |
| 5819 | self: Effect.Effect<A, E, R>, |
| 5820 | span: Tracer.AnySpan | ReadonlyArray<Tracer.AnySpan>, |
| 5821 | attributes?: Record<string, unknown> |
| 5822 | ): Effect.Effect<A, E, R> |
nothing calls this directly
no test coverage detected
searching dependent graphs…