* Removes a reference to the specified fiber inside the children set. * * **NOTE**: This method must be invoked by the fiber itself.
(child: FiberRuntime<any, any>)
| 632 | * **NOTE**: This method must be invoked by the fiber itself. |
| 633 | */ |
| 634 | removeChild(child: FiberRuntime<any, any>) { |
| 635 | this.getChildren().delete(child) |
| 636 | } |
| 637 | |
| 638 | /** |
| 639 | * Transfers all children of this fiber that are currently running to the |