* Gets the fiber's set of children.
()
| 391 | * Gets the fiber's set of children. |
| 392 | */ |
| 393 | getChildren(): Set<FiberRuntime<any, any>> { |
| 394 | if (this._children === null) { |
| 395 | this._children = new Set() |
| 396 | } |
| 397 | return this._children |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * Retrieves the interrupted cause of the fiber, which will be `Cause.empty` |
no outgoing calls
no test coverage detected