(child: LayoutNode, index: number)
| 61 | // Tree |
| 62 | |
| 63 | insertChild(child: LayoutNode, index: number): void { |
| 64 | this.yoga.insertChild((child as YogaLayoutNode).yoga, index) |
| 65 | } |
| 66 | |
| 67 | removeChild(child: LayoutNode): void { |
| 68 | this.yoga.removeChild((child as YogaLayoutNode).yoga) |
no outgoing calls
no test coverage detected