* Adds a reference to the specified fiber inside the children set. * * **NOTE**: This method must be invoked by the fiber itself.
(child: FiberRuntime<any, any>)
| 623 | * **NOTE**: This method must be invoked by the fiber itself. |
| 624 | */ |
| 625 | addChild(child: FiberRuntime<any, any>) { |
| 626 | this.getChildren().add(child) |
| 627 | } |
| 628 | |
| 629 | /** |
| 630 | * Removes a reference to the specified fiber inside the children set. |
no test coverage detected