* Retrieves the immediate children of the fiber.
()
| 384 | * Retrieves the immediate children of the fiber. |
| 385 | */ |
| 386 | get children(): Effect.Effect<Array<Fiber.RuntimeFiber<any, any>>> { |
| 387 | return this.ask((fiber) => Array.from(fiber.getChildren())) |
| 388 | } |
| 389 | |
| 390 | /** |
| 391 | * Gets the fiber's set of children. |
nothing calls this directly
no test coverage detected