(fiber: Fiber.Fiber<any, any>)
| 749 | } |
| 750 | |
| 751 | const fiberStackAnnotations = (fiber: Fiber.Fiber<any, any>) => { |
| 752 | if (!fiber.currentStackFrame) return undefined |
| 753 | const annotations = new Map<string, unknown>() |
| 754 | annotations.set(InterruptorStackTrace.key, fiber.currentStackFrame) |
| 755 | return Context.makeUnsafe(annotations) |
| 756 | } |
| 757 | |
| 758 | const fiberInterruptChildren = (fiber: FiberImpl) => { |
| 759 | if (fiber._children === undefined || fiber._children.size === 0) { |
no test coverage detected