( effect: Effect.Effect<A, E, R>, parentFiber: FiberRuntime<B, E2>, parentRuntimeFlags: RuntimeFlags.RuntimeFlags, overrideScope: fiberScope.FiberScope | null = null )
| 2457 | |
| 2458 | /** @internal */ |
| 2459 | export const unsafeForkUnstarted = <A, E, R, E2, B>( |
| 2460 | effect: Effect.Effect<A, E, R>, |
| 2461 | parentFiber: FiberRuntime<B, E2>, |
| 2462 | parentRuntimeFlags: RuntimeFlags.RuntimeFlags, |
| 2463 | overrideScope: fiberScope.FiberScope | null = null |
| 2464 | ): FiberRuntime<A, E> => { |
| 2465 | const childFiber = unsafeMakeChildFiber(effect, parentFiber, parentRuntimeFlags, overrideScope) |
| 2466 | return childFiber |
| 2467 | } |
| 2468 | |
| 2469 | /** @internal */ |
| 2470 | export const unsafeMakeChildFiber = <A, E, R, E2, B>( |
no test coverage detected