()
| 776 | } |
| 777 | |
| 778 | export function getCurrentSpan(): Span | null { |
| 779 | if (!isAnyTracingEnabled()) { |
| 780 | return null |
| 781 | } |
| 782 | |
| 783 | return ( |
| 784 | toolContext.getStore()?.span ?? interactionContext.getStore()?.span ?? null |
| 785 | ) |
| 786 | } |
| 787 | |
| 788 | export async function executeInSpan<T>( |
| 789 | spanName: string, |
nothing calls this directly
no test coverage detected